about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-10-17 23:38:03 +0000
committerEric Wong <e@80x24.org>2023-10-18 20:50:33 +0000
commit45dbc8fb3a9dbbef4ceea42953ef1875b4fa8276 (patch)
treebf2d49363731d8aef921ca56abb0678e7d6f9a51 /t
parent48aca3659c248c936a978a8338cf19aacc9483a1 (diff)
downloadpublic-inbox-45dbc8fb3a9dbbef4ceea42953ef1875b4fa8276.tar.gz
I'm not sure why, but this test just failed for some odd reason
from `make check-run' on my Debian bullseye workstatation.
Diffstat (limited to 't')
-rw-r--r--t/lei-up.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/lei-up.t b/t/lei-up.t
index baed6507..2d3afd82 100644
--- a/t/lei-up.t
+++ b/t/lei-up.t
@@ -18,11 +18,11 @@ test_lei(sub {
                 gunzip("$home/$x.mbox.gz" => \$uc, MultiStream => 1) or
                                 xbail "gunzip $GunzipError";
                 ok(index($uc, $qp->body_raw) >= 0,
-                        "original mail in $x.mbox.gz");
+                        "original mail in $x.mbox.gz") or diag $uc;
                 open my $fh, '<', "$home/$x" or xbail $!;
                 $uc = do { local $/; <$fh> } // xbail $!;
                 ok(index($uc, $qp->body_raw) >= 0,
-                        "original mail in uncompressed $x");
+                        "original mail in uncompressed $x") or diag $uc;
         }
         lei_ok qw(ls-search);
         $s = eml_load('t/utf8.eml')->as_string;