Skip to content

Commit fbe9076

Browse files
committed
Auto merge of #1082 - RalfJung:panic, r=RalfJung
test more panics Add some tests for #1071. Blocked on rust-lang/rust#66844.
2 parents 33fe904 + f7efe23 commit fbe9076

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

tests/run-pass/catch_panic.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ fn main() {
4444
prev(panic_info)
4545
}));
4646

47-
test(|_old_val| panic!("Hello from panic: std"));
48-
test(|old_val| panic!(format!("Hello from panic: {:?}", old_val)));
49-
test(|old_val| panic!("Hello from panic: {:?}", old_val));
50-
test(|_old_val| panic!(1337));
51-
// FIXME https://github.com/rust-lang/miri/issues/1071
52-
//test(|_old_val| core::panic!("Hello from panic: core"));
53-
//test(|old_val| core::panic!(&format!("Hello from panic: {:?}", old_val)));
54-
//test(|old_val| core::panic!("Hello from panic: {:?}", old_val));
47+
test(|_old_val| std::panic!("Hello from panic: std"));
48+
test(|old_val| std::panic!(format!("Hello from panic: {:?}", old_val)));
49+
test(|old_val| std::panic!("Hello from panic: {:?}", old_val));
50+
test(|_old_val| std::panic!(1337));
51+
52+
test(|_old_val| core::panic!("Hello from panic: core"));
53+
test(|old_val| core::panic!(&format!("Hello from panic: {:?}", old_val)));
54+
test(|old_val| core::panic!("Hello from panic: {:?}", old_val));
5555

5656
// Cleanup: reset to default hook.
5757
drop(std::panic::take_hook());

tests/run-pass/catch_panic.stderr

+6
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,10 @@ thread 'main' panicked at 'Hello from panic: 2', $DIR/catch_panic.rs:49:20
66
Caught panic message (String): Hello from panic: 2
77
thread 'main' panicked at 'Box<Any>', $DIR/catch_panic.rs:50:21
88
Failed get caught panic message.
9+
thread 'main' panicked at 'Hello from panic: core', $DIR/catch_panic.rs:52:21
10+
Caught panic message (String): Hello from panic: core
11+
thread 'main' panicked at 'Hello from panic: 5', $DIR/catch_panic.rs:53:20
12+
Caught panic message (String): Hello from panic: 5
13+
thread 'main' panicked at 'Hello from panic: 6', $DIR/catch_panic.rs:54:20
14+
Caught panic message (String): Hello from panic: 6
915
Success!

0 commit comments

Comments
 (0)