Skip to content

Commit 709b45f

Browse files
author
Joel Allred
authored
Merge pull request diffblue#2591 from allredj/log-suffix-in-testpl
Print log suffix when running tests
2 parents f3630f0 + 282468c commit 709b45f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

regression/test.pl

+7-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,13 @@ ($)
392392
);
393393
}
394394

395-
print "Running tests\n";
395+
if ($log_suffix) {
396+
print "Running tests with log suffix: $log_suffix\n";
397+
}
398+
else
399+
{
400+
print "Running tests\n";
401+
}
396402
foreach my $test (@tests) {
397403
if(defined($pool))
398404
{

0 commit comments

Comments
 (0)