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.

classification
Title: test_shutil fails with OSError: [Errno 28] No space left on device on "PPC64LE Fedora Stable LTO + PGO 3.x" buildbot
Type: Stage: resolved
Components: Tests Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: cstratak, petr.viktorin, vstinner
Priority: normal Keywords:

Created on 2020-02-18 13:01 by vstinner, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (3)
msg362203 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-02-18 13:01
PPC64LE Fedora Stable LTO + PGO 3.x:
https://buildbot.python.org/all/#/builders/449/builds/31

Example:

======================================================================
ERROR: test_big_chunk (test.test_shutil.TestZeroCopySendfile)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/test/test_shutil.py", line 2405, in test_big_chunk
    shutil._fastcopy_sendfile(src, dst)
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/shutil.py", line 163, in _fastcopy_sendfile
    raise err from None
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/shutil.py", line 149, in _fastcopy_sendfile
    sent = os.sendfile(outfd, infd, offset, blocksize)
OSError: [Errno 28] No space left on device: '@test_3252264_tmp' -> '@test_3252264_tmp2'
msg362263 - (view) Author: Charalampos Stratakis (cstratak) * Date: 2020-02-19 11:21
The issue has been fixed. root was 15GB, but there was still 30GB of un-allocated space in the volume group, so just expanded the logical volume.
msg362268 - (view) Author: Petr Viktorin (petr.viktorin) * (Python committer) Date: 2020-02-19 13:10
Indeed, builds are green: https://buildbot.python.org/all/#/builders/449

Thanks Victor for reporting and Harris for fixing this.
History
Date User Action Args
2022-04-11 14:59:26adminsetgithub: 83857
2020-02-19 13:10:04petr.viktorinsetstatus: open -> closed

nosy: + petr.viktorin
messages: + msg362268

resolution: fixed
stage: resolved
2020-02-19 11:21:24cstrataksetmessages: + msg362263
2020-02-18 13:53:46vstinnersetnosy: + cstratak
2020-02-18 13:01:52vstinnercreate