summaryrefslogtreecommitdiffstats
path: root/tests/run-coverage/panic_unwind.coverage
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-coverage/panic_unwind.coverage')
-rw-r--r--tests/run-coverage/panic_unwind.coverage62
1 files changed, 31 insertions, 31 deletions
diff --git a/tests/run-coverage/panic_unwind.coverage b/tests/run-coverage/panic_unwind.coverage
index 58b9ba448..2b0777ef2 100644
--- a/tests/run-coverage/panic_unwind.coverage
+++ b/tests/run-coverage/panic_unwind.coverage
@@ -1,32 +1,32 @@
- 1| |#![allow(unused_assignments)]
- 2| |// failure-status: 101
- 3| |
- 4| 4|fn might_panic(should_panic: bool) {
- 5| 4| if should_panic {
- 6| 1| println!("panicking...");
- 7| 1| panic!("panics");
- 8| 3| } else {
- 9| 3| println!("Don't Panic");
- 10| 3| }
- 11| 3|}
- 12| |
- 13| 1|fn main() -> Result<(), u8> {
- 14| 1| let mut countdown = 10;
- 15| 11| while countdown > 0 {
- 16| 11| if countdown == 1 {
- 17| 1| might_panic(true);
- 18| 10| } else if countdown < 5 {
- 19| 3| might_panic(false);
- 20| 6| }
- 21| 10| countdown -= 1;
- 22| | }
- 23| 0| Ok(())
- 24| 0|}
- 25| |
- 26| |// Notes:
- 27| |// 1. Compare this program and its coverage results to those of the similar tests `abort.rs` and
- 28| |// `try_error_result.rs`.
- 29| |// 2. Since the `panic_unwind.rs` test is allowed to unwind, it is also allowed to execute the
- 30| |// normal program exit cleanup, including writing out the current values of the coverage
- 31| |// counters.
+ 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.