aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/runtests.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 18b7e83ef..0f95b3f19 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -1653,6 +1653,9 @@ sub displaylogs {
foreach $log (sort @logs) {
# the log file is not "." or ".." and contains more than zero bytes
if(($log !~ /\.(\.|)$/) && -s "$LOGDIR/$log") {
+ if($log =~ /^\.nfs/) {
+ next;
+ }
print "== Start of file $log\n";
displaylogcontent("$LOGDIR/$log");
print "== End of file $log\n";