aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2007-10-25 18:07:13 +0000
committerYang Tse <yangsita@gmail.com>2007-10-25 18:07:13 +0000
commit26c1c8b2ad4ff65fdf77a0337821c4c3cfde6f30 (patch)
treea15dcefbcb8ea2450ac04650cca7e773806e43ba /tests/runtests.pl
parent824aa5f9181a22a55224d6945886894029d04a3d (diff)
Don't show valgrind log files of other tests
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 875d8baa6..b7a1b4a80 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -2729,6 +2729,9 @@ sub displaylogs {
if(($log =~ /^file\d+\.txt/) && ($log !~ /^file$testnum\.txt/)) {
next; # skip fileNnn.txt of other tests
}
+ if(($log =~ /^valgrind\d+/) && ($log !~ /^valgrind$testnum/)) {
+ next; # skip valgrindNnn of other tests
+ }
logmsg "=== Start of file $log\n";
displaylogcontent("$LOGDIR/$log");
logmsg "=== End of file $log\n";