blob: 530d94c16c53c4a154f923dd4845925f9425c441 [file] [log] [blame]
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -07001// Test stopset overflow in strspn 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_strspn 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[] = "bbc";
13 char s2[] = {'a', 'b'};
14 char s3 = 0;
15 r = strspn(s1, s2);
16 // CHECK:'s{{[2|3]}}' <== Memory access at offset {{[0-9]+ .*}}flows this variable
17 assert(r >= 2);
18 return 0;
19}