Skip to content

Commit 3f4d1c6

Browse files
Miklos Vajnagitster
authored andcommitted
Add a new test for git-merge-resolve
Actually this is a simple test, just to ensure merge-resolve properly calls read-tree. read-tree itself already has more complex tests. Signed-off-by: Miklos Vajna <vmiklos@frugalware.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8ec0dd6 commit 3f4d1c6

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

t/t7605-merge-resolve.sh

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#!/bin/sh
2+
3+
test_description='git-merge
4+
5+
Testing the resolve strategy.'
6+
7+
. ./test-lib.sh
8+
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+
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+
30+
test_expect_success 'merge c1 to c2' '
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 &&
39+
test -f c2.c
40+
'
41+
42+
test_expect_success 'merge c2 to c3 (fails)' '
43+
git reset --hard c2 &&
44+
test_must_fail git merge -s resolve c3
45+
'
46+
test_done

0 commit comments

Comments
 (0)