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 3d9b4c6 commit 715e763Copy full SHA for 715e763
Changes
@@ -1,6 +1,7 @@
1
Revision history for Test-Harness
2
3
- Prevent double summary on bail-out
4
+ - Prevent bail_out summary when no handler for it is defined
5
6
3.49_01 2024-04-27
7
- Simplify runtests
lib/TAP/Harness.pm
@@ -609,7 +609,7 @@ sub _bailout {
609
$job->finish;
610
611
my $explanation = $result->explanation;
612
- $self->{bail_summary}();
+ $self->{bail_summary}() if $self->{bail_summary};
613
die "FAILED--Further testing stopped"
614
. ( $explanation ? ": $explanation\n" : ".\n" );
615
}
0 commit comments