[PATCH] D148807: [llvm-exegesis][AArch64] Only run tests on aarch64 hosts
Tom Stellard via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 20 08:15:05 PDT 2023
tstellar created this revision.
tstellar added reviewers: kpdev42, gchatelet.
Herald added subscribers: mstojanovic, kristof.beyls.
Herald added a project: All.
tstellar requested review of this revision.
Herald added a subscriber: courbet.
Herald added a project: LLVM.
The add-return.s test is failing on s390x.
See also e30ce634f75c01cc8784cb0c4972c42987178c1d <https://reviews.llvm.org/rGe30ce634f75c01cc8784cb0c4972c42987178c1d>.
Repository:
rG LLVM Github Monorepo
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.515341.patch
Type: text/x-patch
Size: 492 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230420/e33df734/attachment.bin>
More information about the llvm-commits
mailing list