Skip to content

Commit 282468c

Browse files
author
Joel Allred
committed
Print log suffix when running tests
This allows to distinguish between successive test runs with different log suffixes.
1 parent 569c854 commit 282468c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

regression/test.pl

Lines changed: 7 additions & 1 deletion
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)