]> git.ipfire.org Git - thirdparty/git.git/blame - t/t6024-recursive-merge.sh
t/test-lib.sh: exit with small negagive int is ok with test_must_fail
[thirdparty/git.git] / t / t6024-recursive-merge.sh
CommitLineData
c93be3b5
JH
1#!/bin/sh
2
3test_description='Test merge without common ancestors'
4. ./test-lib.sh
5
6# This scenario is based on a real-world repository of Shawn Pearce.
7
8# 1 - A - D - F
9# \ X /
10# B X
11# X \
12# 2 - C - E - G
13
7d2ba122
EW
14GIT_COMMITTER_DATE="2006-12-12 23:28:00 +0100"
15export GIT_COMMITTER_DATE
16
17test_expect_success "setup tests" '
18echo 1 > a1 &&
19git add a1 &&
20GIT_AUTHOR_DATE="2006-12-12 23:00:00" git commit -m 1 a1 &&
21
22git checkout -b A master &&
23echo A > a1 &&
24GIT_AUTHOR_DATE="2006-12-12 23:00:01" git commit -m A a1 &&
25
26git checkout -b B master &&
27echo B > a1 &&
28GIT_AUTHOR_DATE="2006-12-12 23:00:02" git commit -m B a1 &&
29
30git checkout -b D A &&
5be60078 31git rev-parse B > .git/MERGE_HEAD &&
7d2ba122
EW
32echo D > a1 &&
33git update-index a1 &&
34GIT_AUTHOR_DATE="2006-12-12 23:00:03" git commit -m D &&
35
36git symbolic-ref HEAD refs/heads/other &&
37echo 2 > a1 &&
38GIT_AUTHOR_DATE="2006-12-12 23:00:04" git commit -m 2 a1 &&
39
40git checkout -b C &&
41echo C > a1 &&
42GIT_AUTHOR_DATE="2006-12-12 23:00:05" git commit -m C a1 &&
43
44git checkout -b E C &&
5be60078 45git rev-parse B > .git/MERGE_HEAD &&
7d2ba122
EW
46echo E > a1 &&
47git update-index a1 &&
48GIT_AUTHOR_DATE="2006-12-12 23:00:06" git commit -m E &&
49
50git checkout -b G E &&
5be60078 51git rev-parse A > .git/MERGE_HEAD &&
7d2ba122
EW
52echo G > a1 &&
53git update-index a1 &&
54GIT_AUTHOR_DATE="2006-12-12 23:00:07" git commit -m G &&
55
56git checkout -b F D &&
5be60078 57git rev-parse C > .git/MERGE_HEAD &&
7d2ba122
EW
58echo F > a1 &&
59git update-index a1 &&
c93be3b5 60GIT_AUTHOR_DATE="2006-12-12 23:00:08" git commit -m F
7d2ba122 61'
c93be3b5 62
41ac414e 63test_expect_success "combined merge conflicts" "! git merge -m final G"
c93be3b5 64
f953831e 65cat > expect << EOF
e0ec1819 66<<<<<<< HEAD:a1
f953831e
JS
67F
68=======
69G
e0ec1819 70>>>>>>> G:a1
f953831e
JS
71EOF
72
3af82863 73test_expect_success "result contains a conflict" "test_cmp expect a1"
f953831e 74
c93be3b5
JH
75git ls-files --stage > out
76cat > expect << EOF
e0ec1819 77100644 da056ce14a2241509897fa68bb2b3b6e6194ef9e 1 a1
c93be3b5
JH
78100644 cf84443e49e1b366fac938711ddf4be2d4d1d9e9 2 a1
79100644 fd7923529855d0b274795ae3349c5e0438333979 3 a1
80EOF
81
3af82863 82test_expect_success "virtual trees were processed" "test_cmp expect out"
c93be3b5 83
9f30855d 84test_expect_success 'refuse to merge binary files' '
c3b088d9 85 git reset --hard &&
9f30855d
JS
86 printf "\0" > binary-file &&
87 git add binary-file &&
88 git commit -m binary &&
89 git checkout G &&
90 printf "\0\0" > binary-file &&
91 git add binary-file &&
92 git commit -m binary2 &&
93 ! git merge F > merge.out 2> merge.err &&
94 grep "Cannot merge binary files: HEAD:binary-file vs. F:binary-file" \
95 merge.err
96'
97
c93be3b5 98test_done