File tree 1 file changed +0
-7
lines changed
tests/run-make/core-ffi-typecheck-clang
1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ use serde_json::Value;
11
11
12
12
// It is not possible to run the Rust test-suite on these targets.
13
13
const SKIPPED_TARGETS : & [ & str ] = & [
14
- "wasm32v1-none" ,
15
14
"xtensa-esp32-espidf" ,
16
15
"xtensa-esp32-none-elf" ,
17
16
"xtensa-esp32s2-espidf" ,
@@ -117,12 +116,6 @@ fn main() {
117
116
rfs:: remove_file ( "processed_mod.rs" ) ;
118
117
}
119
118
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
-
126
119
// Helper to parse size from clang defines
127
120
fn parse_size ( defines : & str , type_name : & str ) -> usize {
128
121
let search_pattern = format ! ( "__SIZEOF_{}__ " , type_name. to_uppercase( ) ) ;
You can’t perform that action at this time.
0 commit comments