about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-11-28 20:54:34 +0000
committerEric Wong <e@80x24.org>2019-11-29 01:56:23 +0000
commita995291288a350f426890e57e0bc4a6041c3c8ed (patch)
tree7036183ce8e195f0733667b20cb4ee9ca835dba4 /t
parent0fc77a8ed5d65681cc8f4233c0f15353052d28ff (diff)
downloadpublic-inbox-a995291288a350f426890e57e0bc4a6041c3c8ed.tar.gz
Test output can be a terminal if running as "perl -I lib t/$FOO.t",
and showing fsck progress is pointless for tests.
Diffstat (limited to 't')
-rw-r--r--t/replace.t5
1 files changed, 3 insertions, 2 deletions
diff --git a/t/replace.t b/t/replace.t
index e9361856..57290f96 100644
--- a/t/replace.t
+++ b/t/replace.t
@@ -99,8 +99,9 @@ EOF
 
         for my $dir (glob("$ibx->{inboxdir}/git/*.git")) {
                 my ($bn) = ($dir =~ m!([^/]+)\z!);
-                is(system(qw(git --git-dir), $dir, qw(fsck --strict)), 0,
-                        "git fsck is clean in epoch $bn");
+                is(system(qw(git --git-dir), $dir,
+                                        qw(fsck --strict --no-progress)),
+                        0, "git fsck is clean in epoch $bn");
         }
 
         my $thread_b = $ibx->over->get_thread('replace@example.com');