summaryrefslogtreecommitdiff
path: root/test/ubsan
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2017-05-05 14:51:16 +0000
committerAlexander Potapenko <glider@google.com>2017-05-05 14:51:16 +0000
commit5c7827db19f1b91ee4b5b12935c97c5b387af127 (patch)
treec9d2ae12f388d245293f8d514bfb810f183f1cbf /test/ubsan
parentb5fcaaae01d4d4cc45cc203d801beb4edd74fbac (diff)
[ubsan]: temporarily disable print_stack_trace.cc test
Some problems with ARM stack unwinding led to inaccurate stack traces being printed, which caused this test to fail on http://lab.llvm.org:8011/builders/clang-cmake-thumbv7-a15-full-sh git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@302239 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ubsan')
-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.