diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2023-07-19 13:52:31 +0000 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2023-12-24 20:08:57 +0000 |
| commit | 75e0824e81a5bbaf25bcea2c549c313ec698a215 (patch) | |
| tree | 191988d26c329cf93faeda7fe5616f80e6731dea | |
| parent | 28377274719e1e020e43427262c4b40ef39c1613 (diff) | |
| download | rust-75e0824e81a5bbaf25bcea2c549c313ec698a215.tar.gz rust-75e0824e81a5bbaf25bcea2c549c313ec698a215.zip | |
Bless incremental tests.
| -rw-r--r-- | tests/incremental/hashes/for_loops.rs | 4 | ||||
| -rw-r--r-- | tests/incremental/string_constant.rs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/incremental/hashes/for_loops.rs b/tests/incremental/hashes/for_loops.rs index 98c762e4097..84a04ff913b 100644 --- a/tests/incremental/hashes/for_loops.rs +++ b/tests/incremental/hashes/for_loops.rs @@ -103,9 +103,9 @@ pub fn change_iterable() { } #[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="cfail5", except="hir_owner_nodes, promoted_mir")] +#[rustc_clean(cfg="cfail5", except="hir_owner_nodes, promoted_mir, optimized_mir")] #[rustc_clean(cfg="cfail6")] pub fn change_iterable() { let mut _x = 0; diff --git a/tests/incremental/string_constant.rs b/tests/incremental/string_constant.rs index e15a8d18f85..39b4a5d61d9 100644 --- a/tests/incremental/string_constant.rs +++ b/tests/incremental/string_constant.rs @@ -17,7 +17,7 @@ pub mod x { } #[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() { println!("{}", "2"); } |
