1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-20 13:29:07 +02:00

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>
This commit is contained in:
René Scharfe 2011-10-01 18:39:58 +02:00 committed by Junio C Hamano
parent c37c004b0e
commit 32ec23162e

View File

@ -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;
}