blob: 288380fd6108fb1edd6536fa2d560b4f7bd6607a [file] [log] [blame]
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -07001// Test stopset overflow in strcspn function
2// RUN: %clang_asan %s -o %t && ASAN_OPTIONS=strict_string_checks=true not %run %t 2>&1 | FileCheck %s
3
4// Test intercept_strcspn asan option
5// RUN: env ASAN_OPTIONS=$ASAN_OPTIONS:intercept_strspn=false %run %t 2>&1
6
7#include <assert.h>
8#include <string.h>
9
10int main(int argc, char **argv) {
11 size_t r;
12 char s1[] = "ab";
13 char s2[] = {'a'};
14 char s3 = 0;
15 r = strcspn(s1, s2);
16 // CHECK:'s{{[2|3]}}' <== Memory access at offset {{[0-9]+ .*}}flows this variable
17 assert(r == 0);
18 return 0;
19}