test: Improve code coverage for strnstr(3) unit tests

This commit is contained in:
Guillem Jover 2021-02-07 23:24:51 +01:00
parent 18ebabf223
commit 25f9b30678

View File

@ -35,11 +35,15 @@ main(int argc, char **argv)
assert(strnstr(large, "", strlen(large)) == large);
assert(strnstr(large, "far", strlen(large)) == NULL);
assert(strnstr(large, "quux", strlen(large)) == NULL);
assert(strnstr(large, small, 4) == NULL);
assert(strnstr(large, small, strlen(large)) == (large + 4));
assert(strnstr("quux", large, strlen("quux")) == NULL);
assert(strnstr("foo", large, strlen("foo")) == NULL);
return 0;
}