[PATCH] D110788: test/ExecutionEngine: Clean up lit.local.cfg

Tom Stellard via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 12 19:48:27 PST 2021


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG3129b3339ce1: test/ExecutionEngine: Clean up lit.local.cfg (authored by tstellar).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D110788/new/

https://reviews.llvm.org/D110788

Files:
  llvm/test/ExecutionEngine/lit.local.cfg


Index: llvm/test/ExecutionEngine/lit.local.cfg
===================================================================
--- llvm/test/ExecutionEngine/lit.local.cfg
+++ llvm/test/ExecutionEngine/lit.local.cfg
@@ -1,18 +1,4 @@
-if config.root.host_arch in ['Sparc', 'PowerPC', 'AArch64', 'ARM64', 'SystemZ']:
-    config.unsupported = True
-
-# CMake and autoconf diverge in naming or host_arch
-if 'powerpc64' in config.root.target_triple:
-    config.unsupported = True
-
-if 'aarch64' in config.root.target_triple \
-    or 'arm64' in config.root.target_triple:
-        config.unsupported = True
-
-if 'hexagon' in config.root.target_triple:
-    config.unsupported = True
-
-if 'sparc' in config.root.target_triple:
+if config.root.native_target in ['Sparc', 'PowerPC', 'AArch64', 'ARM64', 'SystemZ', 'Hexagon']:
     config.unsupported = True
 
 # ExecutionEngine tests are not expected to pass in a cross-compilation setup.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D110788.387002.patch
Type: text/x-patch
Size: 924 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211113/ac53a4f5/attachment.bin>


More information about the llvm-commits mailing list