mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
54b26f49e6
Now that the compiler accepts "-Z instrument-xray" option only when targeting one of the supported targets, make sure to not run the codegen tests where the compiler will fail. Like with other compiletests, we don't have access to internals, so simply hardcode a list of supported architectures here.
10 lines
251 B
Rust
10 lines
251 B
Rust
// Verifies basic `-Z instrument-xray` flags.
|
|
//
|
|
// needs-xray
|
|
// compile-flags: -Z instrument-xray
|
|
// compile-flags: -Z instrument-xray=skip-exit
|
|
// compile-flags: -Z instrument-xray=ignore-loops,instruction-threshold=300
|
|
// check-pass
|
|
|
|
fn main() {}
|