summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Linux/asan_preload_test-2.cc
blob: a0f88ce9333c816e856ea8fb8a27942492a23c17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Test that preloaded runtime works with unsanitized executables.
//
// RUN: %clangxx %s -o %t
// RUN: LD_PRELOAD=%shared_libasan not %t 2>&1 | FileCheck %s

// REQUIRES: asan-dynamic-runtime

#include <stdlib.h>

extern "C" void *memset(void *p, int val, size_t n);

void do_access(void *p) {
  // CHECK: AddressSanitizer: heap-buffer-overflow
  memset(p, 0, 2);
}

int main(int argc, char **argv) {
  void *p = malloc(1);
  do_access(p);
  return 0;
}