We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e9992 commit 9762d66Copy full SHA for 9762d66
tests/run-make/compiler-builtins/rmake.rs
@@ -8,6 +8,10 @@
8
//! settings. Turning off optimizations and enabling debug assertions tends to produce the most
9
//! dependence on core that is possible, so that is the configuration we test here.
10
11
+// wasm and nvptx targets don't produce rlib files that object can parse.
12
+//@ ignore-wasm
13
+//@ ignore-nvptx64
14
+
15
#![deny(warnings)]
16
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") {
- // wasm and nvptx targets don't produce rlib files that object can parse.
- return;
- }
40
41
println!("Testing compiler_builtins for {}", target);
42
0 commit comments