[PATCH] D70675: [AIX] Disable clang python binding tests

David Tenty via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Nov 26 12:31:43 PST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rGa38fc6164879: [AIX] Disable clang python binding tests (authored by daltenty).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D70675/new/

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.231121.patch
Type: text/x-patch
Size: 567 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20191126/ec7c4868/attachment.bin>


More information about the cfe-commits mailing list