fetch-pack.c: mark strings for translating
[gitweb.git] / t / t3703-add-magic-pathspec.sh
index e508246c0c904ec01775040d9fb0cc32b4b33dc2..3ef525a559d91b115a3dbe4a1373c8c51fb1fc98 100755 (executable)
@@ -38,17 +38,17 @@ cat >expected <<EOF
 add 'sub/foo'
 EOF
 
-test_expect_success 'a file with the same (long) magic name exists' '
+if test_have_prereq !MINGW && mkdir ":" 2>/dev/null
+then
+       test_set_prereq COLON_DIR
+fi
+
+test_expect_success COLON_DIR 'a file with the same (long) magic name exists' '
        : >":(icase)ha" &&
        test_must_fail git add -n ":(icase)ha" &&
        git add -n "./:(icase)ha"
 '
 
-if mkdir ":" 2>/dev/null
-then
-       test_set_prereq COLON_DIR
-fi
-
 test_expect_success COLON_DIR 'a file with the same (short) magic name exists' '
        : >":/bar" &&
        test_must_fail git add -n :/bar &&