summaryrefslogtreecommitdiff
path: root/t/perf/p3404-rebase-interactive.sh
blob: 88f47de282c10b664744f0c6a622c8b64964f413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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