-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
bpo-41818: Close file descriptors in test_openpty #24119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
When stdin is a TTY, the test added in commit c13d899 is expected to fail. However, when it failed, it did not close its file descriptors. This is flagged by the refleak tests (but only when stdin is a TTY, which doesn't seem to be the case on CI).
This comment has been minimized.
This comment has been minimized.
@encukou can you please check my request in the python issue? |
The comment there was:
I'm not that concerned about failing tests leaking – leak checks are run with the tests, so if tests fail, leaking doesn't really matter. Anyway, I've modified the other tests and removed the comment. |
There's a failure in test_curses, test timeout in test_asyncio, and ... a BuildBot error, it seems. |
When stdin is a TTY, the test added in commit c13d899 is expected to fail. However, when it failed, it did not close its file descriptors. This is flagged by the refleak tests (but only when stdin is a TTY, which doesn't seem to be the case on CI).
When stdin is a TTY, the test added in commit c13d899
is expected to fail. However, when it failed, it did not close
its file descriptors. This is flagged by the refleak tests (but
only when stdin is a TTY, which doesn't seem to be the case on CI).
https://bugs.python.org/issue41818