Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>2011-10-01 20:39:58 +0400
committerJunio C Hamano <gitster@pobox.com>2011-10-03 22:44:03 +0400
commit32ec23162e9c77f4648cf0bdc7b3a60ac7f00929 (patch)
tree2081707d35e3b7a562128ac5b34435199e413acc /test-ctype.c
parentc37c004b0e22806fd976abe5ece800656af2653e (diff)
test-ctype: add test for is_pathspec_magic
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-ctype.c')
-rw-r--r--test-ctype.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test-ctype.c b/test-ctype.c
index b4d1f74e2d..707a821f03 100644
--- a/test-ctype.c
+++ b/test-ctype.c
@@ -36,6 +36,7 @@ int main(int argc, char **argv)
TEST_CLASS(isalnum, LOWER UPPER DIGIT);
TEST_CLASS(is_glob_special, "*?[\\");
TEST_CLASS(is_regex_special, "$()*+.?[\\^{|");
+ TEST_CLASS(is_pathspec_magic, "!\"#%&',-/:;<=>@_`~");
return rc;
}