From: Yang Tse Date: Mon, 2 Jan 2012 12:40:12 +0000 (+0100) Subject: runtests.pl: on test failure, don't show trace log files of other tests X-Git-Tag: curl-7_24_0~66 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=63e2718f8d0f52a4a53db0fdd3822dde12d2ad42;p=thirdparty%2Fcurl.git runtests.pl: on test failure, don't show trace log files of other tests --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 16ee812c65..76816887c3 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -4570,6 +4570,9 @@ sub displaylogs { if(($log =~ /^netrc\d+/) && ($log !~ /^netrc$testnum/)) { next; # skip netrcNnn of other tests } + if(($log =~ /^trace\d+/) && ($log !~ /^trace$testnum/)) { + next; # skip traceNnn of other tests + } if(($log =~ /^valgrind\d+/) && ($log !~ /^valgrind$testnum(\..*|)$/)) { next; # skip valgrindNnn of other tests }