aboutsummaryrefslogtreecommitdiff
path: root/test/asan/TestCases/strspn-2.c
blob: 4c899108de9004e5f871e1aa292140247fddcdea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Test stopset overflow in strspn function
// RUN: %clang_asan %s -o %t && %env_asan_opts=strict_string_checks=true not %run %t 2>&1 | FileCheck %s

// Test intercept_strspn asan option
// RUN: %env_asan_opts=intercept_strspn=false %run %t 2>&1

#include <assert.h>
#include <string.h>
#include <sanitizer/asan_interface.h>

int main(int argc, char **argv) {
  size_t r;
  char s1[] = "bbc";
  char s2[5] = "abcd";
  __asan_poison_memory_region ((char *)&s2[3], 2);
  r = strspn(s1, s2);
  // CHECK:'s2' <== Memory access at offset {{[0-9]+}} partially overflows this variable
  assert(r >= 2);
  return 0;
}