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 xdegaye
Recipients Alex.Willmer, benjamin.peterson, serhiy.storchaka, stutzbach, xdegaye
Date 2016-11-04.15:47:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1478274443.77.0.0752638411169.issue26926@psf.upfronthosting.co.za>
In-reply-to
Content
The tests are run on an ext4 file system.
test_large_file_ops does not fail on the x86_64 and arm64 (aka aarch64) Android 64 bits platforms.
test_large_file_ops still fails on x86 with the latest Android API level 24 (i.e. the latest released libc).

FWIW, the second item in https://android.googlesource.com/platform/bionic.git/#32_bit-ABI-bugs may explain why there is still no large file support on Android 32 bits platforms.
HAVE_LARGEFILE_SUPPORT cannot be used to skip the test since it is also undefined on the Android 64 bits platforms and on linux x86_64.
This new patch is not specific to Android and uses the same method as the one used in test_mmap to skip the test on platforms that do not support large files.
History
Date User Action Args
2016-11-04 15:47:23xdegayesetrecipients: + xdegaye, benjamin.peterson, stutzbach, serhiy.storchaka, Alex.Willmer
2016-11-04 15:47:23xdegayesetmessageid: <1478274443.77.0.0752638411169.issue26926@psf.upfronthosting.co.za>
2016-11-04 15:47:23xdegayelinkissue26926 messages
2016-11-04 15:47:23xdegayecreate