From ca9211ecdede9bdedb812b2243a4abdb8dacd1b9 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Wed, 7 Jan 2015 19:55:37 +0000 Subject: Import compiler-rt trunk r224034. https://llvm.org/svn/llvm-project/compiler-rt/trunk@224034 --- test/asan/TestCases/default_options.cc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/asan/TestCases/default_options.cc (limited to 'test/asan/TestCases/default_options.cc') diff --git a/test/asan/TestCases/default_options.cc b/test/asan/TestCases/default_options.cc new file mode 100644 index 000000000000..6453f66a9523 --- /dev/null +++ b/test/asan/TestCases/default_options.cc @@ -0,0 +1,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 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; +} -- cgit v1.2.3