Skip to content

Commit

Permalink
Enable stack-probe tests with system LLVM >= 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Jan 31, 2018
1 parent 560a2f4 commit e2de8de
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/test/codegen/stack-probes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// ignore-wasm
// ignore-emscripten
// ignore-windows
// no-system-llvm
// min-system-llvm-version 5.0
// compile-flags: -C no-prepopulate-passes

#![crate_type = "lib"]
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-pass/stack-probes-lto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// ignore-emscripten no processes
// ignore-musl FIXME #31506
// ignore-pretty
// no-system-llvm
// min-system-llvm-version 5.0
// compile-flags: -C lto
// no-prefer-dynamic

Expand Down
2 changes: 1 addition & 1 deletion src/test/run-pass/stack-probes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// ignore-cloudabi no processes
// ignore-emscripten no processes
// ignore-musl FIXME #31506
// no-system-llvm
// min-system-llvm-version 5.0

use std::mem;
use std::process::Command;
Expand Down
2 changes: 1 addition & 1 deletion src/tools/compiletest/src/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl EarlyProps {
.expect("Malformed llvm version directive");
// Ignore if using system LLVM and actual version
// is smaller the minimum required version
!(config.system_llvm && &actual_version[..] < min_version)
config.system_llvm && &actual_version[..] < min_version
} else {
false
}
Expand Down

0 comments on commit e2de8de

Please sign in to comment.