__test(-ENOENT) int test_strstr_notfound(void *ctx) { return bpf_strstr(str,
"hi"); }
+__test(-ENOENT) int test_strcasestr_notfound(void *ctx) { return bpf_strcasestr(str,
"hi"); }
__test(0) int test_strstr_empty(void *ctx) { return bpf_strstr(str, ""); }
+__test(0) int test_strcasestr_empty(void *ctx) { return bpf_strcasestr(str,
""); }
__test(0) int test_strnstr_found1(void *ctx) { return bpf_strnstr("", "", 0);
}
__test(0) int test_strnstr_found2(void *ctx) { return bpf_strnstr(str,
"hello", 5); }
__test(0) int test_strnstr_found3(void *ctx) { return bpf_strnstr(str,
"hello", 6); }
@@ -42,5 +46,14 @@ __test(-ENOENT) int test_strnstr_notfound1(void *ctx) {
return bpf_strnstr(str,
__test(-ENOENT) int test_strnstr_notfound2(void *ctx) { return bpf_strnstr(str,
"hello", 4); }
__test(-ENOENT) int test_strnstr_notfound3(void *ctx) { return bpf_strnstr("",
"a", 0); }
__test(0) int test_strnstr_empty(void *ctx) { return bpf_strnstr(str, "", 1);
}
+__test(0) int test_strncasestr_found1(void *ctx) { return bpf_strncasestr("",
"", 0); }
+__test(0) int test_strncasestr_found2(void *ctx) { return bpf_strncasestr(str,
"hello", 5); }
+__test(0) int test_strncasestr_found3(void *ctx) { return bpf_strncasestr(str,
"hello", 6); }
+__test(0) int test_strncasestr_found4(void *ctx) { return bpf_strncasestr(str,
"HELLO", 5); }
+__test(0) int test_strncasestr_found5(void *ctx) { return bpf_strncasestr(str,
"HELLO", 6); }
+__test(-ENOENT) int test_strncasestr_notfound1(void *ctx) { return bpf_strncasestr(str,
"hi", 10); }
+__test(-ENOENT) int test_strncasestr_notfound2(void *ctx) { return bpf_strncasestr(str,
"hello", 4); }
+__test(-ENOENT) int test_strncasestr_notfound3(void *ctx) { return bpf_strncasestr("",
"a", 0); }
+__test(0) int test_strncasestr_empty(void *ctx) { return bpf_strncasestr(str,
"", 1); }
char _license[] SEC("license") = "GPL";