[compiler-rt] d3d73ca - [compiler-rt][test] Temporarily disable ppc64 and ppc64le test/sanitizer_common and test/crt

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 25 10:49:15 PST 2022


Author: Fangrui Song
Date: 2022-02-25T18:49:10Z
New Revision: d3d73cabc1a4c6319cf15e063ed4b4960e7aa193

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

LOG: [compiler-rt][test] Temporarily disable ppc64 and ppc64le test/sanitizer_common and test/crt

to appease clang-ppc64le-rhel: https://github.com/llvm/llvm-project/issues/54084

Added: 
    

Modified: 
    compiler-rt/test/crt/lit.cfg.py
    compiler-rt/test/sanitizer_common/TestCases/Linux/lit.local.cfg.py

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/crt/lit.cfg.py b/compiler-rt/test/crt/lit.cfg.py
index d5a6aa9862d9d..98415a0624d2c 100644
--- a/compiler-rt/test/crt/lit.cfg.py
+++ b/compiler-rt/test/crt/lit.cfg.py
@@ -93,3 +93,6 @@ def build_invocation(compile_flags):
 
 if config.host_os not in ['Linux']:
     config.unsupported = True
+# FIXME https://github.com/llvm/llvm-project/issues/54084
+if config.host_arch in ['ppc64', 'ppc64le']:
+    config.unsupported = True

diff  --git a/compiler-rt/test/sanitizer_common/TestCases/Linux/lit.local.cfg.py b/compiler-rt/test/sanitizer_common/TestCases/Linux/lit.local.cfg.py
index 57271b8078a49..9313e083d6a15 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Linux/lit.local.cfg.py
+++ b/compiler-rt/test/sanitizer_common/TestCases/Linux/lit.local.cfg.py
@@ -7,3 +7,6 @@ def getRoot(config):
 
 if root.host_os not in ['Linux']:
   config.unsupported = True
+# FIXME https://github.com/llvm/llvm-project/issues/54084
+if root.host_arch in ['ppc64', 'ppc64le']:
+  config.unsupported = True


        


More information about the llvm-commits mailing list