summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 93e7d67)
raw | patch | inline | side by side (parent: 93e7d67)
author | Johannes Sixt <j6t@kdbg.org> | |
Thu, 12 May 2011 08:21:33 +0000 (10:21 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 13 May 2011 05:32:24 +0000 (22:32 -0700) |
":" is not allowed in file names on Windows. Detect this case and skip a
test if necessary.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
test if necessary.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3703-add-magic-pathspec.sh | patch | blob | history |
index ce5585ebb173834e629ea650db907840916917d7..e508246c0c904ec01775040d9fb0cc32b4b33dc2 100755 (executable)
git add -n "./:(icase)ha"
'
-test_expect_success 'a file with the same (short) magic name exists' '
- mkdir ":" &&
+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 &&
git add -n "./:/bar"