diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-01-21 09:24:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-21 09:24:12 (GMT) |
commit | b2385458ceddaf3d0d91456923716259d3915023 (patch) | |
tree | 9f654dd0a86e81b96f10d10eb1503271c4a9a771 /Lib/test/pythoninfo.py | |
parent | 222d303ade8aadf0adcae5190fac603bdcafe3f0 (diff) | |
download | cpython-b2385458ceddaf3d0d91456923716259d3915023.zip cpython-b2385458ceddaf3d0d91456923716259d3915023.tar.gz cpython-b2385458ceddaf3d0d91456923716259d3915023.tar.bz2 |
bpo-35772: Fix test_tarfile on ppc64 (GH-11606)
Fix sparse file tests of test_tarfile on ppc64le with the tmpfs
filesystem.
Fix the function testing if the filesystem supports sparse files:
create a file which contains data and "holes", instead of creating a
file which contains no data.
tmpfs effective block size is a page size (tmpfs lives in the page
cache). RHEL uses 64 KiB pages on aarch64, ppc64 and ppc64le, only
s390x and x86_64 use 4 KiB pages, whereas the test punch holes of
4 KiB.
test.pythoninfo: Add resource.getpagesize().
Diffstat (limited to 'Lib/test/pythoninfo.py')
-rw-r--r-- | Lib/test/pythoninfo.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py index 7e94a31..07f3cb3 100644 --- a/Lib/test/pythoninfo.py +++ b/Lib/test/pythoninfo.py @@ -529,6 +529,8 @@ def collect_resource(info_add): value = resource.getrlimit(key) info_add('resource.%s' % name, value) + call_func(info_add, 'resource.pagesize', resource, 'getpagesize') + def collect_test_socket(info_add): try: |