about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-04-25 06:46:50 +0200
committerGitHub <noreply@github.com>2023-04-25 06:46:50 +0200
commit2d72abc8f24d0af3b0344cbee14130eaaf90f75f (patch)
tree66afe302b8efddeef9f8a787ab8c97f1e7d74102 /compiler/rustc_interface/src
parent2212354865ed06612db04afda3f245f1488302e4 (diff)
parent23a363821de3276747b27754bd0dd03a32991187 (diff)
downloadrust-2d72abc8f24d0af3b0344cbee14130eaaf90f75f.tar.gz
rust-2d72abc8f24d0af3b0344cbee14130eaaf90f75f.zip
Rollup merge of #110782 - matthiaskrgr:revert_panic_oom, r=Amanieu
Revert panic oom

This temporarily reverts https://github.com/rust-lang/rust/pull/109507 until https://github.com/rust-lang/rust/issues/110771 is addressed

r? `@Amanieu`
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs
index ce0f90bc1cc..7b0b5102c2d 100644
--- a/compiler/rustc_interface/src/tests.rs
+++ b/compiler/rustc_interface/src/tests.rs
@@ -777,7 +777,7 @@ fn test_unstable_options_tracking_hash() {
     tracked!(no_link, true);
     tracked!(no_profiler_runtime, true);
     tracked!(no_unique_section_names, true);
-    tracked!(oom, OomStrategy::Unwind);
+    tracked!(oom, OomStrategy::Panic);
     tracked!(osx_rpath_install_name, true);
     tracked!(packed_bundled_libs, true);
     tracked!(panic_abort_tests, true);