We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tests/compile/simd-ffi.rs
1 parent 3c61fd8 commit c7c3808Copy full SHA for c7c3808
1 file changed
tests/lang_tests.rs
@@ -85,6 +85,11 @@ fn compile_and_or_run(
85
// TODO(antoyo): find a way to send this via a cli argument.
86
let test_target = std::env::var("CG_GCC_TEST_TARGET").ok();
87
88
+ // FIXME: Remove once we use another test runner which allows annotations.
89
+ if test_target.is_some() && path.to_str().is_some_and(|p| p.ends_with("/smid-ffi.rs")) {
90
+ return Vec::new();
91
+ }
92
+
93
// Test command 1: Compile `x.rs` into `tempdir/x`.
94
let mut exe = PathBuf::new();
95
exe.push(tempdir);
0 commit comments