Merge branch 'ob/sequencer-rearrange-cleanup'
[git.git] / t / t7607-merge-state.sh
blob89a62ac53b3d6012d13b3b1ce0dfa97d494060f2
1 #!/bin/sh
3 test_description="Test that merge state is as expected after failed merge"
5 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
6 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7 . ./test-lib.sh
9 test_expect_success 'Ensure we restore original state if no merge strategy handles it' '
10 test_commit --no-tag "Initial" base base &&
12 for b in branch1 branch2 branch3
14 git checkout -b $b main &&
15 test_commit --no-tag "Change on $b" base $b || return 1
16 done &&
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 &&
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
32 test_done