From: Eric Wong Date: Fri, 18 Jan 2019 21:43:29 +0000 (+0000) Subject: t/git.t: do not pass "-b" to git-repack(1) X-Git-Tag: v1.2.0~402 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=55db8a2a51c13aec813ac56bbaac1505791fd262;p=public-inbox.git t/git.t: do not pass "-b" to git-repack(1) Allows t/git.t to run on older versions of git without "-b" and avoids incurring extra I/O traffic for bitmaps. --- diff --git a/t/git.t b/t/git.t index c642b8fe..2d58a106 100644 --- a/t/git.t +++ b/t/git.t @@ -120,7 +120,7 @@ if (1) { my $nl = scalar @ref; ok($nl > 1, "qx returned array length of $nl"); - $gcf->qx(qw(repack -adbq)); + $gcf->qx(qw(repack -adq)); ok($gcf->packed_bytes > 0, 'packed size is positive'); }