1#!/bin/sh
2
3test_description='merge-recursive: handle file mode'
4. ./test-lib.sh
5. "$TEST_DIRECTORY"/lib-prereq-FILEMODE.sh
6
7test_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
21'
22
23test_expect_success FILEMODE 'verify executable bit on file' '
24 test -x file1
25'
26
27test_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 &&
39 (
40 git merge-recursive master -- a2 b2
41 test $? = 1
42 ) &&
43 git ls-files -u >actual &&
44 (
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
50'
51
52test_expect_success FILEMODE 'verify executable bit on file' '
53 test -x file2
54'
55
56test_done