Skip to content

Commit 78272ae

Browse files
committed
restrict branch-protection-check-IBT run-make test to stable
1 parent 27b93da commit 78272ae

File tree

2 files changed

+5
-27
lines changed

2 files changed

+5
-27
lines changed

tests/run-make/branch-protection-check-IBT/Makefile

-21
This file was deleted.

tests/run-make/branch-protection-check-IBT/_rmake.rs renamed to tests/run-make/branch-protection-check-IBT/rmake.rs

+5-6
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@
44
// python3 x.py test --target x86_64-unknown-linux-gnu tests/run-make/branch-protection-check-IBT/
55

66
//@ only-x86_64
7+
//@ only-stable
78

8-
//@ ignore-test
99
// FIXME(jieyouxu): see the FIXME in the Makefile
1010

11-
use run_make_support::{cwd, env_var, llvm_readobj, rustc};
11+
use run_make_support::{cwd, llvm_components_contain, llvm_readobj, rustc};
1212

1313
fn main() {
14-
let llvm_components = env_var("LLVM_COMPONENTS");
15-
if !format!(" {llvm_components} ").contains(" x86 ") {
16-
return;
17-
}
14+
// if !llvm_components_contain("x86") {
15+
// panic!();
16+
// }
1817

1918
rustc()
2019
.input("main.rs")

0 commit comments

Comments
 (0)