[llvm] Mark ExecutionEngine/JITLink and ExecutionEngine/Orc as unsupported on AIX (PR #156076)

Jamie Schmeiser via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 29 11:12:18 PDT 2025


https://github.com/jamieschmeiser created https://github.com/llvm/llvm-project/pull/156076

Create ExecutionEngine/JitLink/lit.local.cfg and
ExecutionEngine/Orc/lit.local.cfg and use them to mark tests as unsupported on AIX.

>From 8b1a951bf7c4dbea13afa74ce398602e35ea757e Mon Sep 17 00:00:00 2001
From: Jamie Schmeiser <schmeise at ca.ibm.com>
Date: Fri, 29 Aug 2025 14:07:02 -0400
Subject: [PATCH] Mark ExecutionEngine/JITLink and ExecutionEngine/Orc as
 unsupported on AIX

Create ExecutionEngine/JitLink/lit.local.cfg and
ExecutionEngine/Orc/lit.local.cfg and use them to mark tests as
unsupported on AIX.
---
 llvm/test/ExecutionEngine/JITLink/lit.local.cfg | 2 ++
 llvm/test/ExecutionEngine/Orc/lit.local.cfg     | 2 ++
 2 files changed, 4 insertions(+)
 create mode 100644 llvm/test/ExecutionEngine/JITLink/lit.local.cfg
 create mode 100644 llvm/test/ExecutionEngine/Orc/lit.local.cfg

diff --git a/llvm/test/ExecutionEngine/JITLink/lit.local.cfg b/llvm/test/ExecutionEngine/JITLink/lit.local.cfg
new file mode 100644
index 0000000000000..429d01d071dfd
--- /dev/null
+++ b/llvm/test/ExecutionEngine/JITLink/lit.local.cfg
@@ -0,0 +1,2 @@
+if "aix" in config.target_triple:
+    config.unsupported = True
diff --git a/llvm/test/ExecutionEngine/Orc/lit.local.cfg b/llvm/test/ExecutionEngine/Orc/lit.local.cfg
new file mode 100644
index 0000000000000..429d01d071dfd
--- /dev/null
+++ b/llvm/test/ExecutionEngine/Orc/lit.local.cfg
@@ -0,0 +1,2 @@
+if "aix" in config.target_triple:
+    config.unsupported = True



More information about the llvm-commits mailing list