[compiler-rt] 5045b83 - [PowerPC] Mark sanitizer test case unsupported for powerpc64

Ahsan Saghir via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 2 07:05:16 PST 2020


Author: Ahsan Saghir
Date: 2020-12-02T09:03:28-06:00
New Revision: 5045b831a3b9c364d6ef0f09c7a773ca451ae1cc

URL: https://github.com/llvm/llvm-project/commit/5045b831a3b9c364d6ef0f09c7a773ca451ae1cc
DIFF: https://github.com/llvm/llvm-project/commit/5045b831a3b9c364d6ef0f09c7a773ca451ae1cc.diff

LOG: [PowerPC] Mark sanitizer test case unsupported for powerpc64

The author of "https://reviews.llvm.org/D92428" marked
'resize_tls_dynamic.cpp' with XFAIL for powerpc64 since
it fails on a bunch of PowerPC buildbots. However, the
original test case passes on clang-ppc64le-rhel bot. So
marking this as XFAIL makes this bot to fail as the test
case passes unexpectedly. We are marking this unsupported
on all PowerPC64 for now until it is fixed for all the
PowerPC buildbots.

Added: 
    

Modified: 
    compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp b/compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp
index fd8f73ca713b..11c0e48a855e 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp
@@ -9,7 +9,7 @@
 // UNSUPPORTED: lsan, ubsan, android
 
 // FIXME: Investigate
-// XFAIL: powerpc64 && tsan
+// UNSUPPORTED: powerpc64
 
 #include <string.h>
 
@@ -55,4 +55,4 @@ extern "C" void StoreToTLS(char c) {
 // CHECK-NEXT: DTLS_NextBlock [[DTLS]] 0
 // CHECK:      DTLS_Find [[DTLS:0x[a-f0-9]+]] 255
 // CHECK-NEXT: DTLS_NextBlock [[DTLS]] 1
-// CHECK-NOT:  DTLS_NextBlock
\ No newline at end of file
+// CHECK-NOT:  DTLS_NextBlock


        


More information about the llvm-commits mailing list