-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
run-make: Delete cat-and-grep-sanity-check
and restrict branch-protection-check-IBT
to stable
#129156
base: master
Are you sure you want to change the base?
run-make: Delete cat-and-grep-sanity-check
and restrict branch-protection-check-IBT
to stable
#129156
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,17 +4,16 @@ | |
// python3 x.py test --target x86_64-unknown-linux-gnu tests/run-make/branch-protection-check-IBT/ | ||
|
||
//@ only-x86_64 | ||
//@ only-stable | ||
|
||
//@ ignore-test | ||
// FIXME(jieyouxu): see the FIXME in the Makefile | ||
jieyouxu marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remark (for myself): FIXME |
||
|
||
use run_make_support::{cwd, env_var, llvm_readobj, rustc}; | ||
use run_make_support::{cwd, llvm_components_contain, llvm_readobj, rustc}; | ||
|
||
fn main() { | ||
let llvm_components = env_var("LLVM_COMPONENTS"); | ||
if !format!(" {llvm_components} ").contains(" x86 ") { | ||
return; | ||
} | ||
// if !llvm_components_contain("x86") { | ||
// panic!(); | ||
// } | ||
Comment on lines
-14
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Discussion (self-remark mostly): it's not entirely clear to me why we need to check for llvm-components. EDIT: because if we want to run target-specific codegen, it will need the llvm component. Right. |
||
|
||
rustc() | ||
.input("main.rs") | ||
|
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Problem: this can't be correct, it's been in stable since forever, and I don't see any changes that would cause this to not be emitted (yet).