various tests and infrastructure fixes

This commit is contained in:
Sean Barrett
2020-02-01 04:21:41 -08:00
parent c440a53d06
commit 4a7a434c2d
7 changed files with 36 additions and 16 deletions

View File

@@ -52,6 +52,7 @@ void test_lex(void)
int main(int argc, char **argv)
{
#if 0
char *p;
p = (char*) "abcdefghijklmnopqrstuvwxyz";
c(stb_ischar('c', p), "stb_ischar 1");
@@ -73,6 +74,7 @@ int main(int argc, char **argv)
c(stb_ischar('x', p), "stb_ischar f");
c(!stb_ischar('#', p), "stb_ischar g");
c(stb_ischar('X', p), "stb_ischar h");
#endif
test_lex();