]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t/git.t: do not pass "-b" to git-repack(1)
authorEric Wong <e@80x24.org>
Fri, 18 Jan 2019 21:43:29 +0000 (21:43 +0000)
committerEric Wong <e@80x24.org>
Fri, 18 Jan 2019 22:00:33 +0000 (22:00 +0000)
Allows t/git.t to run on older versions of git without
"-b" and avoids incurring extra I/O traffic for bitmaps.

t/git.t

diff --git a/t/git.t b/t/git.t
index c642b8fe8bffc464da3a75b39b5a0b6111ccca5d..2d58a106a9fc671c16a9efb9a1de6c54f06d4ff5 100644 (file)
--- 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');
 }