bolt/deps/llvm-18.1.8/compiler-rt/test/sanitizer_common/TestCases/strcasestr.c

17 lines
343 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang %s -o %t && %run %t 2>&1
// There's no interceptor for strcasestr on Windows
// XFAIL: target={{.*windows-msvc.*}}
#define _GNU_SOURCE
#include <assert.h>
#include <string.h>
int main(int argc, char **argv) {
char *r = 0;
char s1[] = "aB";
char s2[] = "b";
r = strcasestr(s1, s2);
assert(r == s1 + 1);
return 0;
}