Squashed 'third_party/git/' content from commit cb71568594
git-subtree-dir: third_party/git git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
This commit is contained in:
commit
1b593e1ea4
3629 changed files with 1139935 additions and 0 deletions
42
t/perf/p4211-line-log.sh
Executable file
42
t/perf/p4211-line-log.sh
Executable file
|
|
@ -0,0 +1,42 @@
|
|||
#!/bin/sh
|
||||
|
||||
test_description='Tests log -L performance'
|
||||
. ./perf-lib.sh
|
||||
|
||||
test_perf_default_repo
|
||||
|
||||
# Pick a file to log pseudo-randomly. The sort key is the blob hash,
|
||||
# so it is stable.
|
||||
test_expect_success 'select a file' '
|
||||
git ls-tree HEAD | grep ^100644 |
|
||||
sort -k 3 | head -1 | cut -f 2 >filelist
|
||||
'
|
||||
|
||||
file=$(cat filelist)
|
||||
export file
|
||||
|
||||
test_perf 'git rev-list --topo-order (baseline)' '
|
||||
git rev-list --topo-order HEAD >/dev/null
|
||||
'
|
||||
|
||||
test_perf 'git log --follow (baseline for -M)' '
|
||||
git log --oneline --follow -- "$file" >/dev/null
|
||||
'
|
||||
|
||||
test_perf 'git log -L (renames off)' '
|
||||
git log --no-renames -L 1:"$file" >/dev/null
|
||||
'
|
||||
|
||||
test_perf 'git log -L (renames on)' '
|
||||
git log -M -L 1:"$file" >/dev/null
|
||||
'
|
||||
|
||||
test_perf 'git log --oneline --raw --parents' '
|
||||
git log --oneline --raw --parents >/dev/null
|
||||
'
|
||||
|
||||
test_perf 'git log --oneline --raw --parents -1000' '
|
||||
git log --oneline --raw --parents -1000 >/dev/null
|
||||
'
|
||||
|
||||
test_done
|
||||
Loading…
Add table
Add a link
Reference in a new issue