[PATCH] D70675: [AIX] Disable clang python binding tests
David Tenty via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 25 09:19:58 PST 2019
daltenty created this revision.
Herald added subscribers: cfe-commits, mgorny.
Herald added a project: clang.
The Python ctypes FFI interface is broken on AIX, it cannot properly pass
structures containing arrays ( https://bugs.python.org/issue38628). So
disable the clang python binding tests on AIX till this is resolved.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D70675
Files:
clang/bindings/python/tests/CMakeLists.txt
Index: clang/bindings/python/tests/CMakeLists.txt
===================================================================
--- clang/bindings/python/tests/CMakeLists.txt
+++ clang/bindings/python/tests/CMakeLists.txt
@@ -32,6 +32,11 @@
set(RUN_PYTHON_TESTS FALSE)
endif()
+# The Python FFI interface is broken on AIX: https://bugs.python.org/issue38628.
+if(${CMAKE_SYSTEM_NAME} MATCHES "AIX")
+ set(RUN_PYTHON_TESTS FALSE)
+endif()
+
# AArch64, Hexagon, and Sparc have known test failures that need to be
# addressed.
# SystemZ has broken Python/FFI interface:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70675.230917.patch
Type: text/x-patch
Size: 567 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20191125/e6f5a754/attachment.bin>
More information about the cfe-commits
mailing list