From 95eb6853af73ba91188a481a882076fa2639f15f Mon Sep 17 00:00:00 2001 From: Mark Levedahl Date: Sun, 12 Aug 2007 11:24:30 -0400 Subject: [PATCH] t3902 - skip test if file system doesn't support HT in names Windows / cygwin don't support HT, LF, or TAB in file name so this test is meaningless there. Signed-off-by: Mark Levedahl Signed-off-by: Junio C Hamano --- t/t3902-quoted.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/t/t3902-quoted.sh b/t/t3902-quoted.sh index 63f950b179..245fb3babd 100755 --- a/t/t3902-quoted.sh +++ b/t/t3902-quoted.sh @@ -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=' ' -- 2.43.2