about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2022-02-07 14:08:34 +0000
committerGitHub <noreply@github.com>2022-02-07 14:08:34 +0000
commit252ff5ead0ee32b2849570bb9cddf64a7f1b1f9c (patch)
treec531c818589f1296c45f57f52cf1869cbd346341 /src/tools
parent4445a8ff84e1d729df1b0320760bd8f5dd618e78 (diff)
parent0b8c9fbf0bd5e7e9917e7c26e9216d41ddcd2ef7 (diff)
downloadrust-252ff5ead0ee32b2849570bb9cddf64a7f1b1f9c.tar.gz
rust-252ff5ead0ee32b2849570bb9cddf64a7f1b1f9c.zip
Rollup merge of #93416 - name1e5s:chore/remove_allow_fail, r=m-ou-se
remove `allow_fail` test flag

close #93345
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/compiletest/src/header.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/header.rs b/src/tools/compiletest/src/header.rs
index 27d59bc01f2..da7a19139c6 100644
--- a/src/tools/compiletest/src/header.rs
+++ b/src/tools/compiletest/src/header.rs
@@ -922,10 +922,11 @@ pub fn make_test_description<R: Read>(
         name,
         ignore,
         should_panic,
-        allow_fail: false,
         compile_fail: false,
         no_run: false,
         test_type: test::TestType::Unknown,
+        #[cfg(bootstrap)]
+        allow_fail: false,
     }
 }