blob: 89a62ac53b3d6012d13b3b1ce0dfa97d494060f2 [file] [log] [blame]
Elijah Newrenc23fc072022-07-23 01:53:18 +00001#!/bin/sh
2
3test_description="Test that merge state is as expected after failed merge"
4
5GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
6export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7. ./test-lib.sh
8
9test_expect_success 'Ensure we restore original state if no merge strategy handles it' '
10 test_commit --no-tag "Initial" base base &&
11
12 for b in branch1 branch2 branch3
13 do
14 git checkout -b $b main &&
15 test_commit --no-tag "Change on $b" base $b || return 1
16 done &&
17
18 git checkout branch1 &&
19 # This is a merge that octopus cannot handle. Note, that it does not
20 # just hit conflicts, it completely fails and says that it cannot
21 # handle this type of merge.
22 test_expect_code 2 git merge branch2 branch3 >output 2>&1 &&
23 grep "fatal: merge program failed" output &&
24 grep "Should not be doing an octopus" output &&
25
26 # Make sure we did not leave stray changes around when no appropriate
27 # merge strategy was found
28 git diff --exit-code --name-status &&
29 test_path_is_missing .git/MERGE_HEAD
30'
31
32test_done