This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author martin.panter
Recipients Michael.Felt, aixtools@gmail.com, martin.panter
Date 2016-08-22.02:04:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1471831487.49.0.887967767064.issue27435@psf.upfronthosting.co.za>
In-reply-to
Content
The ctypes tests all seem to be protected with code that checks for None, and explicitly skip the test in that case. The skip message should be visible when you run the test in verbose mode.

We could avoid skipping these tests in 2.7 by adding a special case for AIX that loads the library via CDLL("libc.a(shr[_64].o)", RTLD_MEMBER). Like an extension of the special cases already at <https://hg.python.org/cpython/file/v2.7.12/Lib/ctypes/test/test_loading.py#l8>, but we have to set the RTLD_ flag as well as the library name.
History
Date User Action Args
2016-08-22 02:04:47martin.pantersetrecipients: + martin.panter, Michael.Felt, aixtools@gmail.com
2016-08-22 02:04:47martin.pantersetmessageid: <1471831487.49.0.887967767064.issue27435@psf.upfronthosting.co.za>
2016-08-22 02:04:47martin.panterlinkissue27435 messages
2016-08-22 02:04:47martin.pantercreate