From d3d73cabc1a4c6319cf15e063ed4b4960e7aa193 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Fri, 25 Feb 2022 18:49:10 +0000 Subject: [PATCH] [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 --- compiler-rt/test/crt/lit.cfg.py | 3 +++ compiler-rt/test/sanitizer_common/TestCases/Linux/lit.local.cfg.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/compiler-rt/test/crt/lit.cfg.py b/compiler-rt/test/crt/lit.cfg.py index d5a6aa9..98415a0 100644 --- a/compiler-rt/test/crt/lit.cfg.py +++ b/compiler-rt/test/crt/lit.cfg.py @@ -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 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 57271b8..9313e08 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 @@ 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 -- 2.7.4