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.
13 lines
468 B
Rust
13 lines
468 B
Rust
// Checks that `-Z instrument-xray` options can be specified multiple times.
|
|
//
|
|
// needs-xray
|
|
// compile-flags: -Z instrument-xray=skip-exit
|
|
// compile-flags: -Z instrument-xray=instruction-threshold=123
|
|
// compile-flags: -Z instrument-xray=instruction-threshold=456
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
// CHECK: attributes #{{.*}} "xray-instruction-threshold"="456" "xray-skip-exit"
|
|
// CHECK-NOT: attributes #{{.*}} "xray-instruction-threshold"="123"
|
|
pub fn function() {}
|