We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfd512e commit c780627Copy full SHA for c780627
src/runtest.rs
@@ -2629,7 +2629,9 @@ impl ProcRes {
2629
\n",
2630
self.status, self.cmdline, self.stdout,
2631
self.stderr);
2632
- panic!();
+ // Use resume_unwind instead of panic!() to prevent a panic message + backtrace from
2633
+ // compiletest, which is unnecessary noise.
2634
+ std::panic::resume_unwind(Box::new(()));
2635
}
2636
2637
0 commit comments