mirror of
https://github.com/curl/curl.git
synced 2026-07-23 18:57:18 +03:00
ignore the memdump file when showing files after a failure
This commit is contained in:
parent
e8e43f06af
commit
f0057977b7
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue