diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2022-04-05 22:42:23 +0200 |
|---|---|---|
| committer | Pietro Albini <pietro@pietroalbini.org> | 2022-04-05 23:18:40 +0200 |
| commit | 181d28bb6110dc974879db20d433f21aa142db3a (patch) | |
| tree | 3bbc185fd9386b9cc050235fd1785820fcaaae5c /src/tools/compiletest | |
| parent | e96538aeeb2a71e672e1d1a40dcaf0ad34a826b5 (diff) | |
| download | rust-181d28bb6110dc974879db20d433f21aa142db3a.tar.gz rust-181d28bb6110dc974879db20d433f21aa142db3a.zip | |
trivial cfg(bootstrap) changes
Diffstat (limited to 'src/tools/compiletest')
| -rw-r--r-- | src/tools/compiletest/src/header.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tools/compiletest/src/header.rs b/src/tools/compiletest/src/header.rs index 1bdea33dffa..8a72b44e2b5 100644 --- a/src/tools/compiletest/src/header.rs +++ b/src/tools/compiletest/src/header.rs @@ -806,8 +806,7 @@ pub fn make_test_description<R: Read>( cfg: Option<&str>, ) -> test::TestDesc { let mut ignore = false; - #[cfg(not(bootstrap))] - let ignore_message: Option<String> = None; + let ignore_message = None; let mut should_fail = false; let rustc_has_profiler_support = env::var_os("RUSTC_PROFILER_SUPPORT").is_some(); @@ -879,7 +878,6 @@ pub fn make_test_description<R: Read>( test::TestDesc { name, ignore, - #[cfg(not(bootstrap))] ignore_message, should_panic, compile_fail: false, |
