Skip to content

Commit 6bdfcb1

Browse files
author
Jinsong Ji
committed
[BPF][Test] Disable codegen test on AIX
https://reviews.llvm.org/D101194 changed the default getMultiarchTriple in toolchain. So -march=bpf on AIX will get triple of bpf-ibm-aix now, this is unexpected and causing test failures. BPF on AIX is not supported (yet), disable the codegen test on AIX in lit cfg. Reviewed By: yonghong-song Differential Revision: https://reviews.llvm.org/D101866
1 parent abdd14a commit 6bdfcb1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

llvm/test/CodeGen/BPF/lit.local.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
if not 'BPF' in config.root.targets:
22
config.unsupported = True
3+
if 'system-aix' in config.available_features:
4+
config.unsupported = True

0 commit comments

Comments
 (0)