summaryrefslogtreecommitdiff
path: root/t/perf/p5304-prune.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/perf/p5304-prune.sh')
-rwxr-xr-xt/perf/p5304-prune.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/perf/p5304-prune.sh b/t/perf/p5304-prune.sh
index 3c852084eb..83baedb8a4 100755
--- a/t/perf/p5304-prune.sh
+++ b/t/perf/p5304-prune.sh
@@ -21,4 +21,15 @@ test_perf 'prune with no objects' '
git prune
'
+test_expect_success 'repack with bitmaps' '
+ git repack -adb
+'
+
+# We have to create the object in each trial run, since otherwise
+# runs after the first see no object and just skip the traversal entirely!
+test_perf 'prune with bitmaps' '
+ echo "probably not present in repo" | git hash-object -w --stdin &&
+ git prune
+'
+
test_done