summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/tests/sanitizer_nolibc_test_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sanitizer_common/tests/sanitizer_nolibc_test_main.cpp')
-rw-r--r--lib/sanitizer_common/tests/sanitizer_nolibc_test_main.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/sanitizer_common/tests/sanitizer_nolibc_test_main.cpp b/lib/sanitizer_common/tests/sanitizer_nolibc_test_main.cpp
new file mode 100644
index 000000000..5c02bfbd3
--- /dev/null
+++ b/lib/sanitizer_common/tests/sanitizer_nolibc_test_main.cpp
@@ -0,0 +1,18 @@
+//===-- sanitizer_nolibc_test_main.cpp ------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+//
+// This file is a part of ThreadSanitizer/AddressSanitizer runtime.
+// Tests for libc independence of sanitizer_common.
+//
+//===----------------------------------------------------------------------===//
+
+#include "sanitizer_common/sanitizer_libc.h"
+
+extern "C" void _start() {
+ __sanitizer::internal__exit(0);
+}