2008-06-27 21:06:26 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2008-09-03 12:59:33 +04:00
|
|
|
test_description='git merge
|
2008-06-27 21:06:26 +04:00
|
|
|
|
|
|
|
Testing octopus merge with more than 25 refs.'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
echo c0 > c0.c &&
|
|
|
|
git add c0.c &&
|
|
|
|
git commit -m c0 &&
|
|
|
|
git tag c0 &&
|
|
|
|
i=1 &&
|
|
|
|
while test $i -le 30
|
|
|
|
do
|
|
|
|
git reset --hard c0 &&
|
|
|
|
echo c$i > c$i.c &&
|
|
|
|
git add c$i.c &&
|
|
|
|
git commit -m c$i &&
|
|
|
|
git tag c$i &&
|
2016-01-08 14:06:24 +03:00
|
|
|
i=$(expr $i + 1) || return 1
|
2008-06-27 21:06:26 +04:00
|
|
|
done
|
|
|
|
'
|
|
|
|
|
2008-07-07 21:24:20 +04:00
|
|
|
test_expect_success 'merge c1 with c2, c3, c4, ... c29' '
|
2008-06-27 21:06:26 +04:00
|
|
|
git reset --hard c1 &&
|
|
|
|
i=2 &&
|
|
|
|
refs="" &&
|
|
|
|
while test $i -le 30
|
|
|
|
do
|
tests: fix broken &&-chains in compound statements
The top-level &&-chain checker built into t/test-lib.sh causes tests to
magically exit with code 117 if the &&-chain is broken. However, it has
the shortcoming that the magic does not work within `{...}` groups,
`(...)` subshells, `$(...)` substitutions, or within bodies of compound
statements, such as `if`, `for`, `while`, `case`, etc. `chainlint.sed`
partly fills in the gap by catching broken &&-chains in `(...)`
subshells, but bugs can still lurk behind broken &&-chains in the other
cases.
Fix broken &&-chains in compound statements in order to reduce the
number of possible lurking bugs.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Reviewed-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2021-12-09 08:11:06 +03:00
|
|
|
refs="$refs c$i" &&
|
2021-12-09 08:11:15 +03:00
|
|
|
i=$(expr $i + 1) || return 1
|
2010-10-31 04:46:54 +03:00
|
|
|
done &&
|
2008-06-27 21:06:26 +04:00
|
|
|
git merge $refs &&
|
|
|
|
test "$(git rev-parse c1)" != "$(git rev-parse HEAD)" &&
|
|
|
|
i=1 &&
|
|
|
|
while test $i -le 30
|
|
|
|
do
|
|
|
|
test "$(git rev-parse c$i)" = "$(git rev-parse HEAD^$i)" &&
|
2016-01-08 14:06:24 +03:00
|
|
|
i=$(expr $i + 1) || return 1
|
2008-06-27 21:06:26 +04:00
|
|
|
done &&
|
|
|
|
git diff --exit-code &&
|
|
|
|
i=1 &&
|
|
|
|
while test $i -le 30
|
|
|
|
do
|
|
|
|
test -f c$i.c &&
|
2016-01-08 14:06:24 +03:00
|
|
|
i=$(expr $i + 1) || return 1
|
2008-06-27 21:06:26 +04:00
|
|
|
done
|
|
|
|
'
|
|
|
|
|
2009-12-12 03:38:57 +03:00
|
|
|
cat >expected <<\EOF
|
|
|
|
Trying simple merge with c2
|
|
|
|
Trying simple merge with c3
|
|
|
|
Trying simple merge with c4
|
2011-05-25 23:43:59 +04:00
|
|
|
Merge made by the 'octopus' strategy.
|
2012-05-01 00:38:58 +04:00
|
|
|
c2.c | 1 +
|
|
|
|
c3.c | 1 +
|
|
|
|
c4.c | 1 +
|
2012-02-01 16:55:07 +04:00
|
|
|
3 files changed, 3 insertions(+)
|
2009-12-12 03:38:57 +03:00
|
|
|
create mode 100644 c2.c
|
|
|
|
create mode 100644 c3.c
|
|
|
|
create mode 100644 c4.c
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success 'merge output uses pretty names' '
|
|
|
|
git reset --hard c1 &&
|
|
|
|
git merge c2 c3 c4 >actual &&
|
2021-02-11 04:53:53 +03:00
|
|
|
test_cmp expected actual
|
2009-12-12 03:38:57 +03:00
|
|
|
'
|
|
|
|
|
|
|
|
cat >expected <<\EOF
|
2012-02-13 15:48:56 +04:00
|
|
|
Merge made by the 'recursive' strategy.
|
2012-05-01 00:38:58 +04:00
|
|
|
c5.c | 1 +
|
2012-02-01 16:55:07 +04:00
|
|
|
1 file changed, 1 insertion(+)
|
2009-12-12 03:38:57 +03:00
|
|
|
create mode 100644 c5.c
|
|
|
|
EOF
|
|
|
|
|
2012-04-17 23:22:26 +04:00
|
|
|
test_expect_success 'merge reduces irrelevant remote heads' '
|
2020-10-26 20:01:41 +03:00
|
|
|
if test "$GIT_TEST_MERGE_ALGORITHM" = ort
|
|
|
|
then
|
|
|
|
mv expected expected.tmp &&
|
|
|
|
sed s/recursive/ort/ expected.tmp >expected &&
|
|
|
|
rm expected.tmp
|
|
|
|
fi &&
|
2012-02-13 15:48:56 +04:00
|
|
|
GIT_MERGE_VERBOSITY=0 git merge c4 c5 >actual &&
|
2021-02-11 04:53:53 +03:00
|
|
|
test_cmp expected actual
|
2009-12-12 03:38:57 +03:00
|
|
|
'
|
2009-12-12 03:38:58 +03:00
|
|
|
|
|
|
|
cat >expected <<\EOF
|
|
|
|
Fast-forwarding to: c1
|
|
|
|
Trying simple merge with c2
|
2011-05-25 23:43:59 +04:00
|
|
|
Merge made by the 'octopus' strategy.
|
2012-05-01 00:38:58 +04:00
|
|
|
c1.c | 1 +
|
|
|
|
c2.c | 1 +
|
2012-02-01 16:55:07 +04:00
|
|
|
2 files changed, 2 insertions(+)
|
2009-12-12 03:38:58 +03:00
|
|
|
create mode 100644 c1.c
|
|
|
|
create mode 100644 c2.c
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success 'merge fast-forward output uses pretty names' '
|
|
|
|
git reset --hard c0 &&
|
|
|
|
git merge c1 c2 >actual &&
|
2021-02-11 04:53:53 +03:00
|
|
|
test_cmp expected actual
|
2009-12-12 03:38:58 +03:00
|
|
|
'
|
|
|
|
|
2008-06-27 21:06:26 +04:00
|
|
|
test_done
|