File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
tests/run-make/core-ffi-typecheck-clang Expand file tree Collapse file tree 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;
1111
1212// It is not possible to run the Rust test-suite on these targets.
1313const 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
127120fn parse_size ( defines : & str , type_name : & str ) -> usize {
128121 let search_pattern = format ! ( "__SIZEOF_{}__ " , type_name. to_uppercase( ) ) ;
You can’t perform that action at this time.
0 commit comments