Code

Sync with 1.7.9.5
[git.git] / t / perf / p0001-rev-list.sh
1 #!/bin/sh
3 test_description="Tests history walking performance"
5 . ./perf-lib.sh
7 test_perf_default_repo
9 test_perf 'rev-list --all' '
10         git rev-list --all >/dev/null
11 '
13 test_perf 'rev-list --all --objects' '
14         git rev-list --all --objects >/dev/null
15 '
17 test_done