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 vstinner
Recipients corona10, miss-islington, pablogsal, serhiy.storchaka, shihai1991, vstinner
Date 2020-11-17.21:43:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1605649387.07.0.00515521662072.issue41625@roundup.psfhosted.org>
In-reply-to
Content
Nice, AIX can build again Python. But now the 3 tests fail since the test uses a pipe and a file, whereas on AIX, it seems like splice() requires one end to be a socket.

I wrote attached PR 23354 to skip the 3 tests on AIX.

======================================================================
ERROR: test_splice (test.test_os.FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.aixtools-aix-power6/build/Lib/test/test_os.py", line 406, in test_splice
    i = os.splice(in_fd, write_fd, 5)
OSError: [Errno 57] Socket operation on non-socket

======================================================================
ERROR: test_splice_offset_in (test.test_os.FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.aixtools-aix-power6/build/Lib/test/test_os.py", line 440, in test_splice_offset_in
    i = os.splice(in_fd, write_fd, bytes_to_copy, offset_src=in_skip)
OSError: [Errno 57] Socket operation on non-socket

======================================================================
ERROR: test_splice_offset_out (test.test_os.FileTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.aixtools-aix-power6/build/Lib/test/test_os.py", line 479, in test_splice_offset_out
    i = os.splice(read_fd, out_fd, bytes_to_copy, offset_dst=out_seek)
OSError: [Errno 57] Socket operation on non-socket
History
Date User Action Args
2020-11-17 21:43:07vstinnersetrecipients: + vstinner, serhiy.storchaka, corona10, pablogsal, miss-islington, shihai1991
2020-11-17 21:43:07vstinnersetmessageid: <1605649387.07.0.00515521662072.issue41625@roundup.psfhosted.org>
2020-11-17 21:43:07vstinnerlinkissue41625 messages
2020-11-17 21:43:06vstinnercreate