aboutsummaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Windows/default_options.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/TestCases/Windows/default_options.cc')
-rw-r--r--test/asan/TestCases/Windows/default_options.cc18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/asan/TestCases/Windows/default_options.cc b/test/asan/TestCases/Windows/default_options.cc
new file mode 100644
index 000000000000..6e0a28f33692
--- /dev/null
+++ b/test/asan/TestCases/Windows/default_options.cc
@@ -0,0 +1,18 @@
+// RUN: %clangxx_asan -O2 %s -o %t
+// RUN: %run %t 2>&1 | FileCheck %s
+
+// FIXME: merge this with the common default_options test when we can run common
+// tests on Windows.
+
+const char *kAsanDefaultOptions="verbosity=1 help=1";
+
+extern "C"
+__attribute__((no_sanitize_address))
+const char *__asan_default_options() {
+ // CHECK: Available flags for AddressSanitizer:
+ return kAsanDefaultOptions;
+}
+
+int main() {
+ return 0;
+}