diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-02-26 14:19:27 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-02-26 14:19:27 +0000 |
commit | 0aca614ff6a0fb631e4e3fb02c6f13ab5febcbed (patch) | |
tree | 8dca3f52f668890bf0c0e1bb951a9192e7e93d7d /test | |
parent | 1e0a93cf90adf08507195e7af3b689e3f42b7910 (diff) |
Testsuite: in force-continue mode, always dump any unexpected paniclog files
Diffstat (limited to 'test')
-rwxr-xr-x | test/runtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runtest b/test/runtest index 6b6586c10..745b360cf 100755 --- a/test/runtest +++ b/test/runtest @@ -1278,8 +1278,8 @@ 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; - last if (/^s$/); + return 1 if /^c$/i && $rf !~ /paniclog/ && $rsf !~ /paniclog/; + last if (/^[sc]$/); } foreach $f ($rf, $rsf) |