Skip to content

Commit 8fbd055

Browse files
committed
rmake cleanup and addition of additional targets
1 parent cedd098 commit 8fbd055

File tree

1 file changed

+0
-7
lines changed
  • tests/run-make/core-ffi-typecheck-clang

1 file changed

+0
-7
lines changed

tests/run-make/core-ffi-typecheck-clang/rmake.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ use serde_json::Value;
1111

1212
// It is not possible to run the Rust test-suite on these targets.
1313
const SKIPPED_TARGETS: &[&str] = &[
14-
"wasm32v1-none",
1514
"xtensa-esp32-espidf",
1615
"xtensa-esp32-none-elf",
1716
"xtensa-esp32s2-espidf",
@@ -117,12 +116,6 @@ fn main() {
117116
rfs::remove_file("processed_mod.rs");
118117
}
119118

120-
/// Get a list of available targets for 'rustc'.
121-
fn get_target_list() -> String {
122-
let completed_process = rustc().arg("--print").arg("target-list").run();
123-
String::from_utf8(completed_process.stdout()).expect("error not a string")
124-
}
125-
126119
// Helper to parse size from clang defines
127120
fn parse_size(defines: &str, type_name: &str) -> usize {
128121
let search_pattern = format!("__SIZEOF_{}__ ", type_name.to_uppercase());

0 commit comments

Comments
 (0)