Git.pm: Use stream-like writing in cat_blob()
[git/dscho.git] / t / t7602-merge-octopus-many.sh
blob732a11228c25db029f3bf97e2474126e6c231954
1 #!/bin/sh
3 test_description='git merge
5 Testing octopus merge with more than 25 refs.'
7 . ./test-lib.sh
9 test_expect_success 'setup' '
10 echo c0 > c0.c &&
11 git add c0.c &&
12 git commit -m c0 &&
13 git tag c0 &&
14 i=1 &&
15 while test $i -le 30
17 git reset --hard c0 &&
18 echo c$i > c$i.c &&
19 git add c$i.c &&
20 git commit -m c$i &&
21 git tag c$i &&
22 i=`expr $i + 1` || return 1
23 done
26 test_expect_success 'merge c1 with c2, c3, c4, ... c29' '
27 git reset --hard c1 &&
28 i=2 &&
29 refs="" &&
30 while test $i -le 30
32 refs="$refs c$i"
33 i=`expr $i + 1`
34 done &&
35 git merge $refs &&
36 test "$(git rev-parse c1)" != "$(git rev-parse HEAD)" &&
37 i=1 &&
38 while test $i -le 30
40 test "$(git rev-parse c$i)" = "$(git rev-parse HEAD^$i)" &&
41 i=`expr $i + 1` || return 1
42 done &&
43 git diff --exit-code &&
44 i=1 &&
45 while test $i -le 30
47 test -f c$i.c &&
48 i=`expr $i + 1` || return 1
49 done
52 cat >expected <<\EOF
53 Trying simple merge with c2
54 Trying simple merge with c3
55 Trying simple merge with c4
56 Merge made by the 'octopus' strategy.
57 c2.c | 1 +
58 c3.c | 1 +
59 c4.c | 1 +
60 3 files changed, 3 insertions(+), 0 deletions(-)
61 create mode 100644 c2.c
62 create mode 100644 c3.c
63 create mode 100644 c4.c
64 EOF
66 test_expect_success 'merge output uses pretty names' '
67 git reset --hard c1 &&
68 git merge c2 c3 c4 >actual.raw &&
69 tr -d "\r" < actual.raw > actual &&
70 test_cmp actual expected
73 cat >expected <<\EOF
74 Already up-to-date with c4
75 Trying simple merge with c5
76 Merge made by the 'octopus' strategy.
77 c5.c | 1 +
78 1 files changed, 1 insertions(+), 0 deletions(-)
79 create mode 100644 c5.c
80 EOF
82 test_expect_success 'merge up-to-date output uses pretty names' '
83 git merge c4 c5 >actual.raw &&
84 tr -d "\r" < actual.raw > actual &&
85 test_cmp actual expected
88 cat >expected <<\EOF
89 Fast-forwarding to: c1
90 Trying simple merge with c2
91 Merge made by the 'octopus' strategy.
92 c1.c | 1 +
93 c2.c | 1 +
94 2 files changed, 2 insertions(+), 0 deletions(-)
95 create mode 100644 c1.c
96 create mode 100644 c2.c
97 EOF
99 test_expect_success 'merge fast-forward output uses pretty names' '
100 git reset --hard c0 &&
101 git merge c1 c2 >actual.raw &&
102 tr -d "\r" < actual.raw > actual &&
103 test_cmp actual expected
106 test_done