about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-10-20 21:04:13 +0200
committerGitHub <noreply@github.com>2024-10-20 21:04:13 +0200
commit7fbed7b07ebe23462bf01108b4f62e747ba9469d (patch)
treeac402f9e2403bda3b9bb15d3dd6b103317607bfd /src
parent2a9b6d96268eda2ce26db93a872bb15ec2601245 (diff)
parentebfe0e4620285f8f91d15ac84dff24cd2c1d6a4c (diff)
downloadrust-7fbed7b07ebe23462bf01108b4f62e747ba9469d.tar.gz
rust-7fbed7b07ebe23462bf01108b4f62e747ba9469d.zip
Rollup merge of #131927 - clubby789:skip-filecheck-directives, r=Mark-Simulacrum
Check for filecheck directives in files marked `skip-filecheck`

cc #116971
Diffstat (limited to 'src')
-rw-r--r--src/tools/miropt-test-tools/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/miropt-test-tools/src/lib.rs b/src/tools/miropt-test-tools/src/lib.rs
index 4317f23a822..41b53d2ad0e 100644
--- a/src/tools/miropt-test-tools/src/lib.rs
+++ b/src/tools/miropt-test-tools/src/lib.rs
@@ -129,6 +129,9 @@ pub fn files_for_miropt_test(
 
             out.push(MiroptTestFile { expected_file, from_file, to_file });
         }
+        if !run_filecheck && l.trim_start().starts_with("// CHECK") {
+            panic!("error: test contains filecheck directive but is marked `skip-filecheck`");
+        }
     }
 
     MiroptTest { run_filecheck, suffix, files: out, passes }