-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #68698 - tmiasko:catch-panic, r=Amanieu
Remove incorrect debug assertions from catch_unwind Previously the debug assertions in the implementation of catch_unwind used to verify consistency of the panic count by checking that the count is zero just before leaving the function. This incorrectly assumed that no panic was in progress when entering `catch_unwind`. Fixes #68696.
- Loading branch information
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Checks that catch_unwind can be used if unwinding is already in progress. | ||
// Used to fail when standard library had been compiled with debug assertions, | ||
// due to incorrect assumption that a current thread is not panicking when | ||
// entering the catch_unwind. | ||
// | ||
// run-pass | ||
// ignore-wasm no panic support | ||
// ignore-emscripten no panic support | ||
|
||
use std::panic::catch_unwind; | ||
|
||
#[derive(Default)] | ||
struct Guard; | ||
|
||
impl Drop for Guard { | ||
fn drop(&mut self) { | ||
let _ = catch_unwind(|| {}); | ||
} | ||
} | ||
|
||
fn main() { | ||
let _ = catch_unwind(|| { | ||
let _guard = Guard::default(); | ||
panic!(); | ||
}); | ||
} |