Skip to content

Commit

Permalink
[compiler-rt][test] Temporarily disable ppc64 and ppc64le test/saniti…
Browse files Browse the repository at this point in the history
…zer_common and test/crt

to appease clang-ppc64le-rhel: #54084
  • Loading branch information
MaskRay committed Feb 25, 2022
1 parent ca62b1d commit d3d73ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions compiler-rt/test/crt/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d3d73ca

Please sign in to comment.