From: Daniel Stenberg Date: Fri, 22 Apr 2005 20:47:35 +0000 (+0000) Subject: ignore the memdump file when showing files after a failure X-Git-Tag: curl-7_14_0~129 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0057977b76b59bfc93ad438072bc890927881dc;p=thirdparty%2Fcurl.git ignore the memdump file when showing files after a failure --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 4a56a9a87b..42f7698852 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1933,7 +1933,9 @@ sub displaylogs { print "== Contents of files in the log/ dir after test $testnum\n"; foreach $log (sort @logs) { # the log file is not "." or ".." and contains more than zero bytes - if(($log !~ /\.(\.|)$/) && -s "$LOGDIR/$log") { + if(($log !~ /\.(\.|)$/) && + ($log ne "memdump") && # and not "memdump" + -s "$LOGDIR/$log") { if($log =~ /^\.nfs/) { next; }