]> granicus.if.org Git - python/commit
[3.6] bpo-31234: Add test.support.wait_threads_exit() (GH-3578) (GH-7315)
authorVictor Stinner <vstinner@redhat.com>
Fri, 1 Jun 2018 13:51:02 +0000 (15:51 +0200)
committerGitHub <noreply@github.com>
Fri, 1 Jun 2018 13:51:02 +0000 (15:51 +0200)
commit5dbb48aaac0ff74648b355ebdde222856004b1ef
treec47bd93d6333eb31b1461d75c5463ef058d666b2
parent95681c7a7ddd436ba7d6c10d1202c33dd6bd648b
[3.6] bpo-31234: Add test.support.wait_threads_exit() (GH-3578) (GH-7315)

* bpo-31234: Add test.support.wait_threads_exit() (GH-3578)

Use _thread.count() to wait until threads exit. The new context
manager prevents the "dangling thread" warning.

(cherry picked from commit ff40ecda73178dfcad24e26240d684356ef20793)

* bpo-31234: Try to fix lock_tests warning (#3557)

Try to fix the "Warning -- threading_cleanup() failed to cleanup 1
threads" warning in test.lock_tests: wait a little bit longer to give
time to the threads to complete.

Warning seen on test_thread and test_importlib.

(cherry picked from commit 096ae3373abac2c8b3a26a3fe33cc8bd4cbccd4e)
Lib/test/lock_tests.py
Lib/test/support/__init__.py
Lib/test/test_socket.py
Lib/test/test_thread.py
Lib/test/test_threading.py
Lib/test/test_threadsignals.py