about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-12-31 13:51:44 +0000
committerEric Wong <e@80x24.org>2021-01-01 05:00:39 +0000
commit0308b7313856713a539dde078048c755334f9ae2 (patch)
tree76c7da1fb5741fe7623a93cf3464932166e1c110 /t
parent9867a7279070e06caf2768bdb04099e09fea2358 (diff)
downloadpublic-inbox-0308b7313856713a539dde078048c755334f9ae2.tar.gz
Diagnosing an occasional FIFO failure in t/lei_to_mail.t...
Diffstat (limited to 't')
-rwxr-xr-xt/run.perl3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/run.perl b/t/run.perl
index 1c7bcfc3..5c056356 100755
--- a/t/run.perl
+++ b/t/run.perl
@@ -71,7 +71,8 @@ sub test_status () {
                 my $skip = '';
                 if (open my $fh, '<', $log) {
                         my @not_ok = grep(!/^(?:ok |[ \t]*#)/ms, <$fh>);
-                        pop @not_ok if $not_ok[-1] =~ /^[0-9]+\.\.[0-9]+$/;
+                        my $last = $not_ok[-1] // '';
+                        pop @not_ok if $last =~ /^[0-9]+\.\.[0-9]+$/;
                         my $pfx = "# $log: ";
                         print $OLDERR map { $pfx.$_ } @not_ok;
                         seek($fh, 0, SEEK_SET) or die "seek: $!";