tests: simplify "missing PREREQ" message
[git/dscho.git] / t / t6031-merge-recursive.sh
blob66167e3f732422146d3540c7951a424526c26cfc
1 #!/bin/sh
3 test_description='merge-recursive: handle file mode'
4 . ./test-lib.sh
5 . "$TEST_DIRECTORY"/lib-prereq-FILEMODE.sh
7 test_expect_success 'mode change in one branch: keep changed version' '
8 : >file1 &&
9 git add file1 &&
10 git commit -m initial &&
11 git checkout -b a1 master &&
12 : >dummy &&
13 git add dummy &&
14 git commit -m a &&
15 git checkout -b b1 master &&
16 test_chmod +x file1 &&
17 git commit -m b1 &&
18 git checkout a1 &&
19 git merge-recursive master -- a1 b1 &&
20 git ls-files -s file1 | grep ^100755
23 test_expect_success FILEMODE 'verify executable bit on file' '
24 test -x file1
27 test_expect_success 'mode change in both branches: expect conflict' '
28 git reset --hard HEAD &&
29 git checkout -b a2 master &&
30 : >file2 &&
31 H=$(git hash-object file2) &&
32 test_chmod +x file2 &&
33 git commit -m a2 &&
34 git checkout -b b2 master &&
35 : >file2 &&
36 git add file2 &&
37 git commit -m b2 &&
38 git checkout a2 &&
40 git merge-recursive master -- a2 b2
41 test $? = 1
42 ) &&
43 git ls-files -u >actual &&
45 echo "100755 $H 2 file2"
46 echo "100644 $H 3 file2"
47 ) >expect &&
48 test_cmp actual expect &&
49 git ls-files -s file2 | grep ^100755
52 test_expect_success FILEMODE 'verify executable bit on file' '
53 test -x file2
56 test_done