summaryrefslogtreecommitdiffstats
path: root/tests/coverage/panic_unwind.coverage
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
commitef24de24a82fe681581cc130f342363c47c0969a (patch)
tree0d494f7e1a38b95c92426f58fe6eaa877303a86c /tests/coverage/panic_unwind.coverage
parentReleasing progress-linux version 1.74.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-ef24de24a82fe681581cc130f342363c47c0969a.tar.xz
rustc-ef24de24a82fe681581cc130f342363c47c0969a.zip
Merging upstream version 1.75.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/coverage/panic_unwind.coverage')
-rw-r--r--tests/coverage/panic_unwind.coverage32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/coverage/panic_unwind.coverage b/tests/coverage/panic_unwind.coverage
new file mode 100644
index 000000000..2b0777ef2
--- /dev/null
+++ b/tests/coverage/panic_unwind.coverage
@@ -0,0 +1,32 @@
+ LL| |#![allow(unused_assignments)]
+ LL| |// failure-status: 101
+ LL| |
+ LL| 4|fn might_panic(should_panic: bool) {
+ LL| 4| if should_panic {
+ LL| 1| println!("panicking...");
+ LL| 1| panic!("panics");
+ LL| 3| } else {
+ LL| 3| println!("Don't Panic");
+ LL| 3| }
+ LL| 3|}
+ LL| |
+ LL| 1|fn main() -> Result<(), u8> {
+ LL| 1| let mut countdown = 10;
+ LL| 11| while countdown > 0 {
+ LL| 11| if countdown == 1 {
+ LL| 1| might_panic(true);
+ LL| 10| } else if countdown < 5 {
+ LL| 3| might_panic(false);
+ LL| 6| }
+ LL| 10| countdown -= 1;
+ LL| | }
+ LL| 0| Ok(())
+ LL| 0|}
+ LL| |
+ LL| |// Notes:
+ LL| |// 1. Compare this program and its coverage results to those of the similar tests `abort.rs` and
+ LL| |// `try_error_result.rs`.
+ LL| |// 2. Since the `panic_unwind.rs` test is allowed to unwind, it is also allowed to execute the
+ LL| |// normal program exit cleanup, including writing out the current values of the coverage
+ LL| |// counters.
+