summaryrefslogtreecommitdiff
path: root/test/runtest
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2019-12-01 14:49:26 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2019-12-01 14:49:26 +0000
commit1477005f2e352b6c4a25fd4706b7dc808d0bb70b (patch)
treef6076e344bd170438c1f995075b5c5e9281c0ddc /test/runtest
parent30398c0651d976f7ca2713ba9441c117eb37ed1e (diff)
Testsuite: Fix use-of-undef
Diffstat (limited to 'test/runtest')
-rwxr-xr-xtest/runtest2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtest b/test/runtest
index d9cb51da4..25f9b9571 100755
--- a/test/runtest
+++ b/test/runtest
@@ -1537,7 +1537,7 @@ if (! -e $sf_current)
log_failure($log_failed_filename, $testno, $rf);
log_test($log_summary_filename, $testno, 'F') if ($force_continue);
}
- return 1 if /^c$/i && $rf !~ /paniclog/ && $rsf !~ /paniclog/;
+ return 1 if /^c$/i && $rf !~ /paniclog/ && (!defined $rsf || $rsf !~ /paniclog/);
last if (/^[sc]$/);
}