Skip to content

Commit

Permalink
test613: stop showing an error on missing output file
Browse files Browse the repository at this point in the history
This test would show an error message if the output was missing during
the log post-processing step, but the message was not captured by the
test harness and wasn't useful since the normal golden log file
comparison would the problem more clearly.
  • Loading branch information
dfandrich committed Oct 14, 2023
1 parent 9cc5787 commit a2b4391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/libtest/test613.pl
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ sub errout {

rmdir $dirname || die "$!";

if ($logfile) {
if ($logfile && -s $logfile) {
# Process the directory file to remove all information that
# could be inconsistent from one test run to the next (e.g.
# file date) or may be unsupported on some platforms (e.g.
Expand Down

0 comments on commit a2b4391

Please sign in to comment.