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 ec8beb1 commit 3d9b4c6Copy full SHA for 3d9b4c6
Changes
@@ -1,5 +1,7 @@
1
Revision history for Test-Harness
2
3
+ - Prevent double summary on bail-out
4
+
5
3.49_01 2024-04-27
6
- Simplify runtests
7
- Tidy up core dump file
lib/TAP/Harness.pm
@@ -558,8 +558,8 @@ sub runtests {
558
my $bailout;
559
eval { $self->aggregate_tests( $aggregate, @tests ); 1 }
560
or do { $bailout = $@ || 'unknown_error' };
561
- $finish->();
562
die $bailout if defined $bailout;
+ $finish->();
563
};
564
$self->{bail_summary} = sub{
565
print "\n";
0 commit comments