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_asyncio: test_stdin_broken_pipe() failed on AMD64 FreeBSD CURRENT Shared 3.x
Type: Stage: resolved
Components: Tests Versions: Python 3.8
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: vstinner
Priority: normal Keywords:

Created on 2019-06-04 17:38 by vstinner, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (3)
msg344612 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-06-04 17:38
See also bpo-33531 and bpo-30382.

AMD64 FreeBSD CURRENT Shared 3.x:
https://buildbot.python.org/all/#/builders/168/builds/1154

======================================================================
FAIL: test_stdin_broken_pipe (test.test_asyncio.test_subprocess.SubprocessFastWatcherTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/home/buildbot/python/3.x.koobs-freebsd-current/build/Lib/test/test_asyncio/test_subprocess.py", line 243, in test_stdin_broken_pipe
    self.assertRaises((BrokenPipeError, ConnectionResetError),
AssertionError: (<class 'BrokenPipeError'>, <class 'ConnectionResetError'>) not raised by run_until_complete
msg345643 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-06-14 22:14
x86 Windows7 3.x:
https://buildbot.python.org/all/#/builders/58/builds/2627

FAIL: test_stdin_broken_pipe (test.test_asyncio.test_subprocess.SubprocessProactorTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\cygwin\home\db3l\buildarea\3.x.bolen-windows7\build\lib\test\test_asyncio\test_subprocess.py", line 243, in test_stdin_broken_pipe
    self.assertRaises((BrokenPipeError, ConnectionResetError),
AssertionError: (<class 'BrokenPipeError'>, <class 'ConnectionResetError'>) not raised by run_until_complete
msg361568 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-02-07 10:50
I didn't see the failure recently, I close it.
History
Date User Action Args
2022-04-11 14:59:16adminsetgithub: 81336
2020-02-07 10:50:15vstinnersetstatus: open -> closed
resolution: out of date
messages: + msg361568

stage: resolved
2019-06-14 22:14:08vstinnersetmessages: + msg345643
2019-06-04 17:38:15vstinnercreate