summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/default_options.cc
blob: c77dd49e6cc2e72763cae8678ec52bafb06835ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clangxx_asan -O2 %s -o %t
// RUN: %run %t 2>&1 | FileCheck %s

const char *kAsanDefaultOptions="verbosity=1 foo=bar";

extern "C"
__attribute__((no_sanitize_address))
const char *__asan_default_options() {
  // CHECK: Using the defaults from __asan_default_options: {{.*}} foo=bar
  return kAsanDefaultOptions;
}

int main() {
  return 0;
}