Git fork

fsck: add a performance test

Add a plain performance test for "fsck". This test will not be used to
/ referred to in any upcoming commit of mine in this series, but
having a simple test for fsck performance is valuable, so let's add it
while we're at it.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Ævar Arnfjörð Bjarmason and committed by
Junio C Hamano
6cb173b5 12b1c50a

+13
+13
t/perf/p1450-fsck.sh
··· 1 + #!/bin/sh 2 + 3 + test_description='Test fsck performance' 4 + 5 + . ./perf-lib.sh 6 + 7 + test_perf_large_repo 8 + 9 + test_perf 'fsck' ' 10 + git fsck 11 + ' 12 + 13 + test_done