diff options
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index a3e2f6c9b..7249f8b07 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -442,7 +442,7 @@ sub singletest { # name of the test open(N, "<$TESTDIR/name$NUMBER.txt") || - print "** Couldn't read name on test $NUMBER\n"; + return -1; # not a test my $DESC=<N>; close(N); $DESC =~ s/[\r\n]//g; |