X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Ftest%2Frun-make%2Fexecution-engine%2Ftest.rs;h=c4d28223c1a84d6297505a363889be953af78d97;hb=58f1b9c7fc93961fee8c94b6bdcbd5abfe84d5e0;hp=fe6a5faf9324a3a46e4b0bdd8634c9e14c9d0f40;hpb=3e9589c0f43af69544b042f50b886005613540f2;p=rust.git diff --git a/src/test/run-make/execution-engine/test.rs b/src/test/run-make/execution-engine/test.rs index fe6a5faf932..c4d28223c1a 100644 --- a/src/test/run-make/execution-engine/test.rs +++ b/src/test/run-make/execution-engine/test.rs @@ -42,6 +42,12 @@ use syntax::parse::token; fn main() { + // Currently trips an assertion on i686-msvc, presumably because the support + // in LLVM is a little young. + if cfg!(target_env = "msvc") && cfg!(target_arch = "x86") { + return + } + let program = r#" #[no_mangle] pub static TEST_STATIC: i32 = 42;