git-multimail: update to release 1.2.0
[git.git] / t / t3419-rebase-patch-id.sh
blob217dd79b2e4b5c02ee27f3b913c37c489ec585f2
1 #!/bin/sh
3 test_description='git rebase - test patch id computation'
5 . ./test-lib.sh
7 count () {
8 i=0
9 while test $i -lt $1
11 echo "$i"
12 i=$(($i+1))
13 done
16 scramble () {
17 i=0
18 while read x
20 if test $i -ne 0
21 then
22 echo "$x"
24 i=$((($i+1) % 10))
25 done <"$1" >"$1.new"
26 mv -f "$1.new" "$1"
29 run () {
30 echo \$ "$@"
31 /usr/bin/time "$@" >/dev/null
34 test_expect_success 'setup' '
35 git commit --allow-empty -m initial &&
36 git tag root
39 do_tests () {
40 nlines=$1 pr=${2-}
42 test_expect_success $pr "setup: $nlines lines" "
43 rm -f .gitattributes &&
44 git checkout -q -f master &&
45 git reset --hard root &&
46 count $nlines >file &&
47 git add file &&
48 git commit -q -m initial &&
49 git branch -f other &&
51 scramble file &&
52 git add file &&
53 git commit -q -m 'change big file' &&
55 git checkout -q other &&
56 : >newfile &&
57 git add newfile &&
58 git commit -q -m 'add small file' &&
60 git cherry-pick master >/dev/null 2>&1
63 test_debug "
64 run git diff master^\!
67 test_expect_success $pr 'setup attributes' "
68 echo 'file binary' >.gitattributes
71 test_debug "
72 run git format-patch --stdout master &&
73 run git format-patch --stdout --ignore-if-in-upstream master
76 test_expect_success $pr 'detect upstream patch' "
77 git checkout -q master &&
78 scramble file &&
79 git add file &&
80 git commit -q -m 'change big file again' &&
81 git checkout -q other^{} &&
82 git rebase master &&
83 test_must_fail test -n \"\$(git rev-list master...HEAD~)\"
86 test_expect_success $pr 'do not drop patch' "
87 git branch -f squashed master &&
88 git checkout -q -f squashed &&
89 git reset -q --soft HEAD~2 &&
90 git commit -q -m squashed &&
91 git checkout -q other^{} &&
92 test_must_fail git rebase squashed &&
93 rm -rf .git/rebase-apply
97 do_tests 500
98 do_tests 50000 EXPENSIVE
100 test_done