aboutsummaryrefslogtreecommitdiff
path: root/test/sanitizer_common/TestCases/strstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/sanitizer_common/TestCases/strstr.c')
-rw-r--r--test/sanitizer_common/TestCases/strstr.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/sanitizer_common/TestCases/strstr.c b/test/sanitizer_common/TestCases/strstr.c
new file mode 100644
index 000000000000..2089ac7b5fcb
--- /dev/null
+++ b/test/sanitizer_common/TestCases/strstr.c
@@ -0,0 +1,12 @@
+// RUN: %clang %s -o %t && %run %t 2>&1
+
+#include <assert.h>
+#include <string.h>
+int main(int argc, char **argv) {
+ char *r = 0;
+ char s1[] = "ab";
+ char s2[] = "b";
+ r = strstr(s1, s2);
+ assert(r == s1 + 1);
+ return 0;
+}