summaryrefslogtreecommitdiff
path: root/test/sanitizer_common/TestCases/Darwin/print-stack-trace.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/sanitizer_common/TestCases/Darwin/print-stack-trace.cpp')
-rw-r--r--test/sanitizer_common/TestCases/Darwin/print-stack-trace.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/sanitizer_common/TestCases/Darwin/print-stack-trace.cpp b/test/sanitizer_common/TestCases/Darwin/print-stack-trace.cpp
new file mode 100644
index 000000000..e02862d3d
--- /dev/null
+++ b/test/sanitizer_common/TestCases/Darwin/print-stack-trace.cpp
@@ -0,0 +1,19 @@
+// RUN: %clangxx -O0 %s -o %t && %env_tool_opts=stack_trace_format=DEFAULT %run %t 2>&1 | FileCheck %s
+// RUN: %env_tool_opts=stack_trace_format='"frame:%n lineno:%l"' %run %t 2>&1 | FileCheck %s --check-prefix=CUSTOM
+
+#include <sanitizer/common_interface_defs.h>
+
+static inline void FooBarBaz() {
+ __sanitizer_print_stack_trace();
+}
+
+int main() {
+ FooBarBaz();
+ return 0;
+}
+// CHECK: {{ #0 0x.* in __sanitizer_print_stack_trace}}
+// CHECK: {{ #1 0x.* in FooBarBaz(\(\))? .*}}print-stack-trace.cpp:[[@LINE-8]]
+// CHECK: {{ #2 0x.* in main.*}}print-stack-trace.cpp:[[@LINE-5]]
+
+// CUSTOM: frame:1 lineno:[[@LINE-11]]
+// CUSTOM: frame:2 lineno:[[@LINE-8]]