Subject: [PATCH] Use testlib to skip the test (it cannot be run on cygwin) Correct the error message to reflect the problem source Signed-off-by: Alex Riesen --- t/t3300-funny-names.sh | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) 721ca495bbbff1d387aa48ae401b7a14fb486ac0 diff --git a/t/t3300-funny-names.sh b/t/t3300-funny-names.sh index 6a85d67..5d70594 100755 --- a/t/t3300-funny-names.sh +++ b/t/t3300-funny-names.sh @@ -9,11 +9,15 @@ This test tries pathnames with funny cha tree, index, and tree objects. ' -# since FAT/NTFS does not allow tabs in filenames, skip this test -test "$(uname -o 2>/dev/null)" = Cygwin && exit 0 - . ./test-lib.sh +# Since FAT/NTFS does not allow tabs in filenames, skip this test. +# Windows also have unexplainable problems with names containing only spaces. +if [ "$(uname -o 2>/dev/null)" = Cygwin ]; then + say 'FAT and NTFS on Windows do not allow tabs in filenames, test skipped' + test_done +fi + p0='no-funny' p1='tabs ," (dq) and spaces' p2='just space' -- 1.0.GIT