Use square brackets instead. And the prominent example of the deficiency are, as usual, the filesystems of Microsoft house. Signed-off-by: Alex Riesen <raa.lkml@xxxxxxxxx> --- 2008/8/15 Junio C Hamano <gitster@xxxxxxxxx>: >>> And the prominent example of the deficiency are, as usual, the filesystems >>> of Microsoft house. >> >> Can other glob specials such as '*' or '[' be used instead of skipping the >> test? > > Ah... The brackets are allowed. Sorry, should have thought of it. t/t3700-add.sh | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
From 3a25527fa61463d5968586efa1f3474008bbe2d4 Mon Sep 17 00:00:00 2001 From: Alex Riesen <raa.lkml@xxxxxxxxx> Date: Fri, 15 Aug 2008 09:00:54 +0200 Subject: [PATCH] Fix t3700 on filesystems which do not support question marks in names Use square brackets instead. And the prominent example of the deficiency are, as usual, the filesystems of Microsoft house. Signed-off-by: Alex Riesen <raa.lkml@xxxxxxxxx> --- t/t3700-add.sh | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/t/t3700-add.sh b/t/t3700-add.sh index 77a782c..2ac93a3 100755 --- a/t/t3700-add.sh +++ b/t/t3700-add.sh @@ -222,11 +222,11 @@ test_expect_success 'git add (add.ignore-errors = false)' ' ! ( git ls-files foo1 | grep foo1 ) ' -test_expect_success 'git add '\''fo\?bar'\'' ignores foobar' ' +test_expect_success 'git add '\''fo\[ou\]bar'\'' ignores foobar' ' git reset --hard && - touch fo\?bar foobar && - git add '\''fo\?bar'\'' && - git ls-files fo\?bar | grep -F fo\?bar && + touch fo\[ou\]bar foobar && + git add '\''fo\[ou\]bar'\'' && + git ls-files fo\[ou\]bar | grep -F fo\[ou\]bar && ! ( git ls-files foobar | grep foobar ) ' -- 1.6.0.rc2.68.g49fa3