move a bunch of tests from testcode/lib to test/val (and a failing one to test/todo)
This commit is contained in:
72
test/val/strnicmp-test.c
Normal file
72
test/val/strnicmp-test.c
Normal file
@@ -0,0 +1,72 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <conio.h>
|
||||
|
||||
static int do_test(const char *s1, const char *s2, size_t n)
|
||||
{
|
||||
printf("strnicmp(\"%s\", \"%s\", %d): ", s1, s2, (int)n);
|
||||
return strncasecmp(s1, s2, n);
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = do_test("Wurzl", "wURZL", 5);
|
||||
if (ret)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("Wurzl", "wURZL", 6);
|
||||
if (ret)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("Wurzl", "wURZL", 10);
|
||||
if (ret)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("Wurzla", "wURZLB", 10);
|
||||
if (ret >= 0)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("Wurzla", "wURZLb", 5);
|
||||
if (ret)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("BLI", "bla", 5);
|
||||
if (ret <= 0)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("", "bla", 5);
|
||||
if (ret >= 0)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("BLI", "", 5);
|
||||
if (ret <= 0)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("", "", 5);
|
||||
if (ret)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
cgetc();
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user