1#!/bin/sh
23
test_description="Tests history walking performance"
45
. ./perf-lib.sh
67
test_perf_default_repo
89
test_perf 'rev-list --all' '
10git rev-list --all >/dev/null
11'
1213
test_perf 'rev-list --all --objects' '
14git rev-list --all --objects >/dev/null
15'
1617
test_done