dir.c::test_one_path(): work around directory_exists_in_index_icase() breakage
[gitweb.git] / t / t3010-ls-files-killed-modified.sh
index 6ea7ca82658143b344aa09b30ec317196ab67728..ab1deae3b2e759b1cdbc22fd4c5c4bcf31f306c1 100755 (executable)
@@ -78,9 +78,6 @@ date >path7
 touch path10
 >pathx/ju/nk
 
-test_expect_success \
-    'git ls-files -k to show killed files.' \
-    'git ls-files -k >.output'
 cat >.expected <<EOF
 path0/file0
 path1/file1
@@ -89,9 +86,15 @@ path3
 pathx/ju/nk
 EOF
 
-test_expect_success \
-    'validate git ls-files -k output.' \
-    'test_cmp .expected .output'
+test_expect_success 'git ls-files -k to show killed files (w/o icase)' '
+    git ls-files -k >.output &&
+    test_cmp .expected .output
+'
+
+test_expect_success 'git ls-files -k to show killed files (w/ icase)' '
+    git -c core.ignorecase=true ls-files -k >.output &&
+    test_cmp .expected .output
+'
 
 test_expect_success \
     'git ls-files -m to show modified files.' \