From: Alex Riesen Date: Tue, 20 Feb 2007 09:04:32 +0000 (+0100) Subject: disable t4016-diff-quote.sh on some filesystems X-Git-Tag: v1.5.1-rc1~266 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d2cd696322011eb13125930e747f0d2a7778b992;p=git.git disable t4016-diff-quote.sh on some filesystems ... because the filesystems (most typically FAT and NTFS) do not support HT nor LF in filenames. Signed-off-by: Alex Riesen --- diff --git a/t/t4016-diff-quote.sh b/t/t4016-diff-quote.sh index edde8f556..2e7cd5f25 100755 --- a/t/t4016-diff-quote.sh +++ b/t/t4016-diff-quote.sh @@ -13,6 +13,10 @@ P1='pathname with HT' P2='pathname with SP' P3='pathname with LF' +: >"$P1" 2>&1 && test -f "$P1" && rm -f "$P1" || { + echo >&2 'Filesystem does not support tabs in names' + test_done +} test_expect_success setup ' echo P0.0 >"$P0.0" &&