aboutsummaryrefslogblamecommitdiff
path: root/test/sanitizer_common/TestCases/strstr.c
blob: 2089ac7b5fcbd3ff0c6ae91533799b0883845a64 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
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;
}