2008-07-30 01:17:00 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2008-09-09 23:25:27 +02:00
|
|
|
test_description='git merge
|
2008-07-30 01:17:00 +02:00
|
|
|
|
|
|
|
Testing a custom strategy.'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
cat >git-merge-theirs <<EOF
|
|
|
|
#!$SHELL_PATH
|
|
|
|
eval git read-tree --reset -u \\\$\$#
|
|
|
|
EOF
|
|
|
|
chmod +x git-merge-theirs
|
|
|
|
PATH=.:$PATH
|
|
|
|
export PATH
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
echo c0 >c0.c &&
|
|
|
|
git add c0.c &&
|
|
|
|
git commit -m c0 &&
|
|
|
|
git tag c0 &&
|
|
|
|
echo c1 >c1.c &&
|
|
|
|
git add c1.c &&
|
|
|
|
git commit -m c1 &&
|
|
|
|
git tag c1 &&
|
|
|
|
git reset --hard c0 &&
|
2008-08-24 04:23:22 +02:00
|
|
|
echo c1c1 >c1.c &&
|
2008-07-30 01:17:00 +02:00
|
|
|
echo c2 >c2.c &&
|
2008-08-24 04:23:22 +02:00
|
|
|
git add c1.c c2.c &&
|
2008-07-30 01:17:00 +02:00
|
|
|
git commit -m c2 &&
|
|
|
|
git tag c2
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'merge c2 with a custom strategy' '
|
|
|
|
git reset --hard c1 &&
|
|
|
|
git merge -s theirs c2 &&
|
|
|
|
test "$(git rev-parse c1)" != "$(git rev-parse HEAD)" &&
|
|
|
|
test "$(git rev-parse c1)" = "$(git rev-parse HEAD^1)" &&
|
|
|
|
test "$(git rev-parse c2)" = "$(git rev-parse HEAD^2)" &&
|
|
|
|
test "$(git rev-parse c2^{tree})" = "$(git rev-parse HEAD^{tree})" &&
|
|
|
|
git diff --exit-code &&
|
2008-08-24 04:23:22 +02:00
|
|
|
git diff --exit-code c2 HEAD &&
|
|
|
|
git diff --exit-code c2 &&
|
2008-07-30 01:17:00 +02:00
|
|
|
test -f c0.c &&
|
2008-08-24 04:23:22 +02:00
|
|
|
grep c1c1 c1.c &&
|
2008-07-30 01:17:00 +02:00
|
|
|
test -f c2.c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|