mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 04:37:02 +00:00
42 lines
888 B
Rust
42 lines
888 B
Rust
//! This test checks that Rust's unwinding mechanism correctly executes `Drop`
|
|
//! implementations during stack unwinding, even when unwind tables (`uwtable`)
|
|
//! are explicitly disabled via `-C force-unwind-tables=n`.
|
|
|
|
//@ run-pass
|
|
//@ needs-unwind
|
|
//@ ignore-windows target requires uwtable
|
|
//@ compile-flags: -C panic=unwind -C force-unwind-tables=n
|
|
|
|
use std::panic::{self, AssertUnwindSafe};
|
|
|
|
struct Increase<'a>(&'a mut u8);
|
|
|
|
impl Drop for Increase<'_> {
|
|
fn drop(&mut self) {
|
|
*self.0 += 1;
|
|
}
|
|
}
|
|
|
|
#[inline(never)]
|
|
fn unwind() {
|
|
panic!();
|
|
}
|
|
|
|
#[inline(never)]
|
|
fn increase(count: &mut u8) {
|
|
let _increase = Increase(count);
|
|
unwind();
|
|
}
|
|
|
|
fn main() {
|
|
let mut count = 0;
|
|
assert!(
|
|
panic::catch_unwind(AssertUnwindSafe(
|
|
#[inline(never)]
|
|
|| increase(&mut count)
|
|
))
|
|
.is_err()
|
|
);
|
|
assert_eq!(count, 1);
|
|
}
|