[PATCH] D148807: [llvm-exegesis][AArch64] Only run tests on aarch64 hosts
Tom Stellard via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 21 07:18:13 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGbeaf46a42d85: [llvm-exegesis][AArch64] Only run tests on aarch64 hosts (authored by tstellar).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D148807/new/
https://reviews.llvm.org/D148807
Files:
llvm/test/tools/llvm-exegesis/AArch64/lit.local.cfg
Index: llvm/test/tools/llvm-exegesis/AArch64/lit.local.cfg
===================================================================
--- llvm/test/tools/llvm-exegesis/AArch64/lit.local.cfg
+++ llvm/test/tools/llvm-exegesis/AArch64/lit.local.cfg
@@ -1,3 +1,6 @@
if not ('AArch64' in config.root.targets):
# We need support for AArch64.
config.unsupported = True
+elif not ('aarch64' in config.root.host_triple):
+ # We need to be running on an PPC host.
+ config.unsupported = True
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D148807.515723.patch
Type: text/x-patch
Size: 492 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230421/3105664e/attachment.bin>
More information about the llvm-commits
mailing list