Squashed 'third_party/git/' content from commit cb71568594
git-subtree-dir: third_party/git git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
This commit is contained in:
commit
1b593e1ea4
3629 changed files with 1139935 additions and 0 deletions
43
t/helper/test-ctype.c
Normal file
43
t/helper/test-ctype.c
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
#include "test-tool.h"
|
||||
#include "cache.h"
|
||||
|
||||
static int rc;
|
||||
|
||||
static void report_error(const char *class, int ch)
|
||||
{
|
||||
printf("%s classifies char %d (0x%02x) wrongly\n", class, ch, ch);
|
||||
rc = 1;
|
||||
}
|
||||
|
||||
static int is_in(const char *s, int ch)
|
||||
{
|
||||
/* We can't find NUL using strchr. It's classless anyway. */
|
||||
if (ch == '\0')
|
||||
return 0;
|
||||
return !!strchr(s, ch);
|
||||
}
|
||||
|
||||
#define TEST_CLASS(t,s) { \
|
||||
int i; \
|
||||
for (i = 0; i < 256; i++) { \
|
||||
if (is_in(s, i) != t(i)) \
|
||||
report_error(#t, i); \
|
||||
} \
|
||||
}
|
||||
|
||||
#define DIGIT "0123456789"
|
||||
#define LOWER "abcdefghijklmnopqrstuvwxyz"
|
||||
#define UPPER "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||
|
||||
int cmd__ctype(int argc, const char **argv)
|
||||
{
|
||||
TEST_CLASS(isdigit, DIGIT);
|
||||
TEST_CLASS(isspace, " \n\r\t");
|
||||
TEST_CLASS(isalpha, LOWER UPPER);
|
||||
TEST_CLASS(isalnum, LOWER UPPER DIGIT);
|
||||
TEST_CLASS(is_glob_special, "*?[\\");
|
||||
TEST_CLASS(is_regex_special, "$()*+.?[\\^{|");
|
||||
TEST_CLASS(is_pathspec_magic, "!\"#%&',-/:;<=>@_`~");
|
||||
|
||||
return rc;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue