]> git.ipfire.org Git - thirdparty/git.git/blame - t/t7605-merge-resolve.sh
Merge branch 'am/t0028-utf16-tests'
[thirdparty/git.git] / t / t7605-merge-resolve.sh
CommitLineData
3f4d1c63
MV
1#!/bin/sh
2
47a528ad 3test_description='git merge
3f4d1c63
MV
4
5Testing the resolve strategy.'
6
7. ./test-lib.sh
8
9test_expect_success 'setup' '
10 echo c0 > c0.c &&
11 git add c0.c &&
12 git commit -m c0 &&
13 git tag c0 &&
14 echo c1 > c1.c &&
15 git add c1.c &&
16 git commit -m c1 &&
17 git tag c1 &&
18 git reset --hard c0 &&
19 echo c2 > c2.c &&
20 git add c2.c &&
21 git commit -m c2 &&
22 git tag c2 &&
23 git reset --hard c0 &&
24 echo c3 > c2.c &&
25 git add c2.c &&
26 git commit -m c3 &&
27 git tag c3
28'
29
ef7d3621 30merge_c1_to_c2_cmds='
3f4d1c63
MV
31 git reset --hard c1 &&
32 git merge -s resolve c2 &&
33 test "$(git rev-parse c1)" != "$(git rev-parse HEAD)" &&
34 test "$(git rev-parse c1)" = "$(git rev-parse HEAD^1)" &&
35 test "$(git rev-parse c2)" = "$(git rev-parse HEAD^2)" &&
36 git diff --exit-code &&
37 test -f c0.c &&
38 test -f c1.c &&
446247db
JH
39 test -f c2.c &&
40 test 3 = $(git ls-tree -r HEAD | wc -l) &&
41 test 3 = $(git ls-files | wc -l)
3f4d1c63
MV
42'
43
ef7d3621
EN
44test_expect_success 'merge c1 to c2' "$merge_c1_to_c2_cmds"
45
40d71940 46test_expect_success 'merge c1 to c2, again' "$merge_c1_to_c2_cmds"
ef7d3621 47
3f4d1c63
MV
48test_expect_success 'merge c2 to c3 (fails)' '
49 git reset --hard c2 &&
50 test_must_fail git merge -s resolve c3
51'
52test_done