[compiler-rt] r302239 - [ubsan]: temporarily disable print_stack_trace.cc test

Alexander Potapenko via llvm-commits llvm-commits at lists.llvm.org
Fri May 5 07:51:17 PDT 2017


Author: glider
Date: Fri May  5 09:51:16 2017
New Revision: 302239

URL: http://llvm.org/viewvc/llvm-project?rev=302239&view=rev
Log:
[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


Modified:
    compiler-rt/trunk/test/ubsan/TestCases/Misc/Linux/print_stack_trace.cc

Modified: compiler-rt/trunk/test/ubsan/TestCases/Misc/Linux/print_stack_trace.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/ubsan/TestCases/Misc/Linux/print_stack_trace.cc?rev=302239&r1=302238&r2=302239&view=diff
==============================================================================
--- compiler-rt/trunk/test/ubsan/TestCases/Misc/Linux/print_stack_trace.cc (original)
+++ compiler-rt/trunk/test/ubsan/TestCases/Misc/Linux/print_stack_trace.cc Fri May  5 09:51:16 2017
@@ -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.




More information about the llvm-commits mailing list