summaryrefslogtreecommitdiff
path: root/ACE/tests/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/run_test.pl')
-rwxr-xr-xACE/tests/run_test.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/ACE/tests/run_test.pl b/ACE/tests/run_test.pl
index b7fc961454e..6b3a49fe7b3 100755
--- a/ACE/tests/run_test.pl
+++ b/ACE/tests/run_test.pl
@@ -107,6 +107,11 @@ sub run_program ($)
{
my $program = shift;
+ ## Print it out before we check for the executable
+ ## if the executable doesn't exist, the error will show
+ ## up as part of the previous test.
+ print "auto_run_tests: tests/$program\n";
+
unlink <log/$program*.log>;
unlink "core";
@@ -128,7 +133,6 @@ sub run_program ($)
}
}
- print "auto_run_tests: tests/$program\n";
my $start_time = time();
$status = $P->SpawnWaitKill (400);
my $time = time() - $start_time;