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
36
t/perf/p3404-rebase-interactive.sh
Executable file
36
t/perf/p3404-rebase-interactive.sh
Executable file
|
|
@ -0,0 +1,36 @@
|
|||
#!/bin/sh
|
||||
|
||||
test_description='Tests rebase -i performance'
|
||||
. ./perf-lib.sh
|
||||
|
||||
test_perf_default_repo
|
||||
|
||||
# This commit merges a sufficiently long topic branch for reasonable
|
||||
# performance testing
|
||||
branch_merge=ba5312da19c6fdb6c6747d479f58932aae6e900c^{commit}
|
||||
export branch_merge
|
||||
|
||||
git rev-parse --verify $branch_merge >/dev/null 2>&1 || {
|
||||
skip_all='skipping because $branch_merge was not found'
|
||||
test_done
|
||||
}
|
||||
|
||||
write_script swap-first-two.sh <<\EOF
|
||||
case "$1" in
|
||||
*/COMMIT_EDITMSG)
|
||||
mv "$1" "$1".bak &&
|
||||
sed -e '1{h;d}' -e 2G <"$1".bak >"$1"
|
||||
;;
|
||||
esac
|
||||
EOF
|
||||
|
||||
test_expect_success 'setup' '
|
||||
git config core.editor "\"$PWD"/swap-first-two.sh\" &&
|
||||
git checkout -f $branch_merge^2
|
||||
'
|
||||
|
||||
test_perf 'rebase -i' '
|
||||
git rebase -i $branch_merge^
|
||||
'
|
||||
|
||||
test_done
|
||||
Loading…
Add table
Add a link
Reference in a new issue