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

// __asan_default_options() are not supported on Windows.
// XFAIL: win32

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

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

int main() {
  return 0;
}