repo.or.cz
/
git
/
git-svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'jn/glossary-revision'
[git/git-svn.git]
/
t
/
perf
/
p0001-rev-list.sh
blob
4f71a63b0a80d7a625d246cf7b98b66c473adc90
1
#!/bin/sh
2
3
test_description
=
"Tests history walking performance"
4
5
. .
/
perf-lib.sh
6
7
test_perf_default_repo
8
9
test_perf
'rev-list --all'
'
10
git rev-list --all >/dev/null
11
'
12
13
test_perf
'rev-list --all --objects'
'
14
git rev-list --all --objects >/dev/null
15
'
16
17
test_done