mirror of
https://github.com/git/git.git
synced 2024-11-30 21:44:02 +08:00
14 lines
134 B
Bash
14 lines
134 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
test_description='Test fsck performance'
|
||
|
|
||
|
. ./perf-lib.sh
|
||
|
|
||
|
test_perf_large_repo
|
||
|
|
||
|
test_perf 'fsck' '
|
||
|
git fsck
|
||
|
'
|
||
|
|
||
|
test_done
|