]> git.lizzy.rs Git - rust.git/blobdiff - library/test/src/types.rs
Auto merge of #95399 - gilescope:plan_b, r=scottmcm
[rust.git] / library / test / src / types.rs
index 43e5a10ebbe95a02f6184410fb9368e7556a1f1f..ffb1efe18cca183fba11d55574ecc97c0ebd5021 100644 (file)
@@ -117,12 +117,11 @@ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
 pub struct TestDesc {
     pub name: TestName,
     pub ignore: bool,
+    pub ignore_message: Option<&'static str>,
     pub should_panic: options::ShouldPanic,
     pub compile_fail: bool,
     pub no_run: bool,
     pub test_type: TestType,
-    #[cfg(bootstrap)]
-    pub allow_fail: bool,
 }
 
 impl TestDesc {