summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ubsan/TestCases/Misc/Linux/print_stack_trace.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ubsan/TestCases/Misc/Linux/print_stack_trace.cc b/test/ubsan/TestCases/Misc/Linux/print_stack_trace.cc
index f41ffbc3b..341fd7a82 100644
--- a/test/ubsan/TestCases/Misc/Linux/print_stack_trace.cc
+++ b/test/ubsan/TestCases/Misc/Linux/print_stack_trace.cc
@@ -1,6 +1,9 @@
// RUN: %clangxx -fsanitize=undefined -O0 %s -o %t && UBSAN_OPTIONS=stack_trace_format=DEFAULT:fast_unwind_on_fatal=1 %run %t 2>&1 | FileCheck %s
// RUN: %clangxx -fsanitize=undefined -O0 %s -o %t && UBSAN_OPTIONS=stack_trace_format=DEFAULT:fast_unwind_on_fatal=0 %run %t 2>&1 | FileCheck %s
+// This test is temporarily disabled due to broken unwinding on ARM.
+// UNSUPPORTED: -linux-
+
// The test doesn't pass on Darwin in UBSan-TSan configuration, because TSan is
// using the slow unwinder which is not supported on Darwin. The test should
// be universal after landing of https://reviews.llvm.org/D32806.