diff options
Diffstat (limited to 'test/sanitizer_common/TestCases/print-stack-trace.cc')
| -rw-r--r-- | test/sanitizer_common/TestCases/print-stack-trace.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/sanitizer_common/TestCases/print-stack-trace.cc b/test/sanitizer_common/TestCases/print-stack-trace.cc new file mode 100644 index 000000000000..1251f67b83cd --- /dev/null +++ b/test/sanitizer_common/TestCases/print-stack-trace.cc @@ -0,0 +1,24 @@ +// RUN: %clangxx -O0 %s -o %t && %tool_options=stack_trace_format=DEFAULT %run %t 2>&1 | FileCheck %s +// RUN: %clangxx -O3 %s -o %t && %tool_options=stack_trace_format=DEFAULT %run %t 2>&1 | FileCheck %s +// RUN: %tool_options='stack_trace_format="frame:%n lineno:%l"' %run %t 2>&1 | FileCheck %s --check-prefix=CUSTOM +// RUN: %tool_options=symbolize_inline_frames=false:stack_trace_format=DEFAULT %run %t 2>&1 | FileCheck %s --check-prefix=NOINLINE + +#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.cc:9}} +// CHECK: {{ #2 0x.* in main.*print-stack-trace.cc:13}} + +// CUSTOM: frame:1 lineno:9 +// CUSTOM: frame:2 lineno:13 + +// NOINLINE: #0 0x{{.*}} in __sanitizer_print_stack_trace +// NOINLINE: #1 0x{{.*}} in main{{.*}}print-stack-trace.cc:9 |
