From: Ævar Arnfjörð Bjarmason Date: Mon, 3 Sep 2018 14:49:24 +0000 (+0000) Subject: fsck: add a performance test X-Git-Tag: v2.20.0-rc0~196^2~4 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/6cb173b5b62c2e86febe06b8575ae808533a3834?ds=inline;hp=--cc 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 Signed-off-by: Junio C Hamano --- 6cb173b5b62c2e86febe06b8575ae808533a3834 diff --git a/t/perf/p1450-fsck.sh b/t/perf/p1450-fsck.sh new file mode 100755 index 0000000000..ae1b84198b --- /dev/null +++ b/t/perf/p1450-fsck.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +test_description='Test fsck performance' + +. ./perf-lib.sh + +test_perf_large_repo + +test_perf 'fsck' ' + git fsck +' + +test_done