[compiler-rt][test] Temporarily disable ppc64 and ppc64le test/sanitizer_common and...
authorFangrui Song <i@maskray.me>
Fri, 25 Feb 2022 18:49:10 +0000 (18:49 +0000)
committerFangrui Song <i@maskray.me>
Fri, 25 Feb 2022 18:49:10 +0000 (18:49 +0000)
to appease clang-ppc64le-rhel: https://github.com/llvm/llvm-project/issues/54084

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

index d5a6aa9..98415a0 100644 (file)
@@ -93,3 +93,6 @@ config.suffixes = ['.c', '.cpp']
 
 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
index 57271b8..9313e08 100644 (file)
@@ -7,3 +7,6 @@ root = 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