Skip to content

Commit

Permalink
t3902 - skip test if file system doesn't support HT in names
Browse files Browse the repository at this point in the history
Windows / cygwin don't support HT, LF, or TAB in file name so this test
is meaningless there.

Signed-off-by: Mark Levedahl <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
mark987 authored and gitster committed Aug 13, 2007
1 parent d616813 commit 95eb685
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions t/t3902-quoted.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ test_description='quoted output'

. ./test-lib.sh

P1='pathname with HT'
: >"$P1" 2>&1 && test -f "$P1" && rm -f "$P1" || {
echo >&2 'Filesystem does not support HT in names'
test_done
}

FN='濱野'
GN=''
HT=' '
Expand Down

0 comments on commit 95eb685

Please sign in to comment.