summaryrefslogtreecommitdiffstats
path: root/tests/codegen/instrument-xray/options-override.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/instrument-xray/options-override.rs')
-rw-r--r--tests/codegen/instrument-xray/options-override.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/codegen/instrument-xray/options-override.rs b/tests/codegen/instrument-xray/options-override.rs
new file mode 100644
index 000000000..00f818379
--- /dev/null
+++ b/tests/codegen/instrument-xray/options-override.rs
@@ -0,0 +1,11 @@
+// Checks that the last `-Z instrument-xray` option wins.
+//
+// needs-xray
+// compile-flags: -Z instrument-xray=always
+// compile-flags: -Z instrument-xray=never
+
+#![crate_type = "lib"]
+
+// CHECK: attributes #{{.*}} "function-instrument"="xray-never"
+// CHECK-NOT: attributes #{{.*}} "function-instrument"="xray-always"
+pub fn function() {}