[llvm] 249acb6 - [LLVM][Examples] Disable tests on AIX

Alexis Engelke via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 13 06:41:03 PST 2025


Author: Alexis Engelke
Date: 2025-12-13T14:39:55Z
New Revision: 249acb6f87969d3227e100b20cdc4f3556dac9b4

URL: https://github.com/llvm/llvm-project/commit/249acb6f87969d3227e100b20cdc4f3556dac9b4
DIFF: https://github.com/llvm/llvm-project/commit/249acb6f87969d3227e100b20cdc4f3556dac9b4.diff

LOG: [LLVM][Examples] Disable tests on AIX

Neither plugins nor JITLink works on AIX.

Added: 
    

Modified: 
    llvm/test/Examples/lit.local.cfg

Removed: 
    


################################################################################
diff  --git a/llvm/test/Examples/lit.local.cfg b/llvm/test/Examples/lit.local.cfg
index 1ed69871fb37d..7ba76509398ab 100644
--- a/llvm/test/Examples/lit.local.cfg
+++ b/llvm/test/Examples/lit.local.cfg
@@ -1,4 +1,4 @@
-if not config.include_examples or sys.platform in ["win32", "cygwin"]:
+if not config.include_examples or sys.platform in ["win32", "cygwin", "aix"]:
     config.unsupported = True
 
 # Test discovery should ignore subdirectories that contain test inputs.


        


More information about the llvm-commits mailing list