3 test_description
='Various filesystem issues'
7 auml
=`printf '\xc3\xa4'`
8 aumlcdiar
=`printf '\x61\xcc\x88'`
11 test_expect_success
'see if we expect ' '
13 test_case=test_expect_success
14 test_unicode=test_expect_success
16 echo good >junk/CamelCase &&
17 echo bad >junk/camelcase &&
18 if test "$(cat junk/CamelCase)" != good
20 test_case=test_expect_failure
22 say "will test on a case insensitive filesystem"
27 case "$(cd junk && echo *)" in
29 test_unicode=test_expect_failure
30 say "will test on a unicode corrupting filesystem"
37 if test "$case_insensitive"
39 test_expect_success
"detection of case insensitive filesystem during repo init" '
41 test $(git config --bool core.ignorecase) = true
44 test_expect_success
"detection of case insensitive filesystem during repo init" '
46 ! git config --bool core.ignorecase >/dev/null ||
47 test $(git config --bool core.ignorecase) = false
51 test_expect_success
"setup case tests" '
55 git commit -m "initial" &&
57 git checkout -b topic &&
58 git mv camelcase tmp &&
59 git mv tmp CamelCase &&
60 git commit -m "rename" &&
61 git checkout -f master
65 $test_case 'rename (case change)' '
67 git mv camelcase CamelCase &&
68 git commit -m "rename"
72 $test_case 'merge (case change)' '
74 git reset --hard initial &&
79 test_expect_success
"setup unicode normalization tests" '
81 test_create_repo unicode &&
84 git add "$aumlcdiar" &&
87 git checkout -b topic &&
88 git mv $aumlcdiar tmp &&
90 git commit -m rename &&
91 git checkout -f master
95 $test_unicode 'rename (silent unicode normalization)' '
97 git mv "$aumlcdiar" "$auml" &&
102 $test_unicode 'merge (silent unicode normalization)' '
104 git reset --hard initial &&