diff options
author | Sam Gross <colesbury@gmail.com> | 2024-03-13 00:11:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-13 00:11:58 (GMT) |
commit | 7d1abe9502641a3602e9773aebc29ee56d8f40ae (patch) | |
tree | 94e7bd72be222ffd920f08134e6908eedddc9611 /Lib | |
parent | 3f54d1cfe78f7c88fb0ecdbc250d9f8be092ec5a (diff) | |
download | cpython-7d1abe9502641a3602e9773aebc29ee56d8f40ae.zip cpython-7d1abe9502641a3602e9773aebc29ee56d8f40ae.tar.gz cpython-7d1abe9502641a3602e9773aebc29ee56d8f40ae.tar.bz2 |
gh-116682: stdout may be empty in test_cancel_futures_wait_false (#116683)
If the `shutdown()` call happens before the worker thread starts executing
the task, then nothing will be printed to stdout.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_concurrent_futures/test_shutdown.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_concurrent_futures/test_shutdown.py b/Lib/test/test_concurrent_futures/test_shutdown.py index 45dab7a..7a4065a 100644 --- a/Lib/test/test_concurrent_futures/test_shutdown.py +++ b/Lib/test/test_concurrent_futures/test_shutdown.py @@ -247,7 +247,9 @@ class ThreadPoolShutdownTest(ThreadPoolMixin, ExecutorShutdownTest, BaseTestCase # Errors in atexit hooks don't change the process exit code, check # stderr manually. self.assertFalse(err) - self.assertEqual(out.strip(), b"apple") + # gh-116682: stdout may be empty if shutdown happens before task + # starts executing. + self.assertIn(out.strip(), [b"apple", b""]) class ProcessPoolShutdownTest(ExecutorShutdownTest): |