Skip to content

Commit

Permalink
t3703: Skip tests using directory name ":" on Windows
Browse files Browse the repository at this point in the history
":" 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>
  • Loading branch information
Johannes Sixt authored and Junio C Hamano committed May 13, 2011
1 parent 93e7d67 commit 650af7a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions t/t3703-add-magic-pathspec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,12 @@ test_expect_success 'a file with the same (long) magic name exists' '
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"
Expand Down

0 comments on commit 650af7a

Please sign in to comment.