diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 1be984b58..1e8ff315b 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -357,10 +357,15 @@ sub runhttpserver { my $data; if($res && $verbose) { - print "RUN: curl command returned $res\nRUN: "; open(ERR, "<log/verifystderr"); - print <ERR>; + my @e = <ERR>; close(ERR); + print "RUN: curl command returned $res\n"; + for(@e) { + if($_ !~ /^([ \t]*)$/) { + print "RUN: $_"; + } + } } open(FILE, "<log/verifiedserver"); my @file=<FILE>; |