File tree 1 file changed +4
-4
lines changed
tests/run-make/compiler-builtins
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 8
8
//! settings. Turning off optimizations and enabling debug assertions tends to produce the most
9
9
//! dependence on core that is possible, so that is the configuration we test here.
10
10
11
+ // wasm and nvptx targets don't produce rlib files that object can parse.
12
+ //@ ignore-wasm
13
+ //@ ignore-nvptx64
14
+
11
15
#![ deny( warnings) ]
12
16
13
17
extern crate run_make_support;
@@ -33,10 +37,6 @@ path = "lib.rs""#;
33
37
fn main ( ) {
34
38
let target_dir = tmp_dir ( ) . join ( "target" ) ;
35
39
let target = std:: env:: var ( "TARGET" ) . unwrap ( ) ;
36
- if target. starts_with ( "wasm" ) || target. starts_with ( "nvptx" ) {
37
- // wasm and nvptx targets don't produce rlib files that object can parse.
38
- return ;
39
- }
40
40
41
41
println ! ( "Testing compiler_builtins for {}" , target) ;
42
42
You can’t perform that action at this time.
0 commit comments