Bless incremental tests.

This commit is contained in:
Camille GILLOT 2023-07-19 13:52:31 +00:00
parent 2837727471
commit 75e0824e81
2 changed files with 3 additions and 3 deletions

View File

@ -103,9 +103,9 @@ pub fn change_iterable() {
} }
#[cfg(not(any(cfail1,cfail4)))] #[cfg(not(any(cfail1,cfail4)))]
#[rustc_clean(cfg="cfail2", except="hir_owner_nodes, promoted_mir")] #[rustc_clean(cfg="cfail2", except="hir_owner_nodes, promoted_mir, optimized_mir")]
#[rustc_clean(cfg="cfail3")] #[rustc_clean(cfg="cfail3")]
#[rustc_clean(cfg="cfail5", except="hir_owner_nodes, promoted_mir")] #[rustc_clean(cfg="cfail5", except="hir_owner_nodes, promoted_mir, optimized_mir")]
#[rustc_clean(cfg="cfail6")] #[rustc_clean(cfg="cfail6")]
pub fn change_iterable() { pub fn change_iterable() {
let mut _x = 0; let mut _x = 0;

View File

@ -17,7 +17,7 @@ pub fn x() {
} }
#[cfg(cfail2)] #[cfg(cfail2)]
#[rustc_clean(except = "hir_owner_nodes,promoted_mir", cfg = "cfail2")] #[rustc_clean(except = "hir_owner_nodes,promoted_mir,optimized_mir", cfg = "cfail2")]
pub fn x() { pub fn x() {
println!("{}", "2"); println!("{}", "2");
} }