From: Yang Tse Date: Wed, 30 May 2007 17:15:05 +0000 (+0000) Subject: In case of test failure, try not to show log files of other tests X-Git-Tag: curl-7_16_3~83 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9583b51d80b36b5d221898cbebc02e84bac22384;p=thirdparty%2Fcurl.git In case of test failure, try not to show log files of other tests --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 76adec1619..98c71d5e12 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2542,6 +2542,9 @@ sub displaylogs { if(($log =~ /^test\d+\.txt/) && ($log !~ /^test$testnum\.txt/)) { next; # skip testNnn.txt of other tests } + if(($log =~ /^file\d+\.txt/) && ($log !~ /^file$testnum\.txt/)) { + next; # skip fileNnn.txt of other tests + } logmsg "=== Start of file $log\n"; displaylogcontent("$LOGDIR/$log"); logmsg "=== End of file $log\n";