diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-09-24 12:19:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-24 12:19:48 (GMT) |
commit | b0e1ae5f5430433766e023c1a6936aeba0f2b84e (patch) | |
tree | 4d0df52cd13a76b4a6652963e256541552cc28c9 /Misc | |
parent | 99799c722065d0524f3ab0bc455e1938bb8dc60f (diff) | |
download | cpython-b0e1ae5f5430433766e023c1a6936aeba0f2b84e.zip cpython-b0e1ae5f5430433766e023c1a6936aeba0f2b84e.tar.gz cpython-b0e1ae5f5430433766e023c1a6936aeba0f2b84e.tar.bz2 |
bpo-37123: multiprocessing test_mymanager() accepts SIGTERM (GH-16349)
Multiprocessing test test_mymanager() now also expects -SIGTERM, not
only exitcode 0.
bpo-30356: BaseManager._finalize_manager() sends SIGTERM to the
manager process if it takes longer than 1 second to stop, which
happens on slow buildbots.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2019-09-24-12-30-55.bpo-37123.IoutBn.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-09-24-12-30-55.bpo-37123.IoutBn.rst b/Misc/NEWS.d/next/Tests/2019-09-24-12-30-55.bpo-37123.IoutBn.rst new file mode 100644 index 0000000..200a5c3 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2019-09-24-12-30-55.bpo-37123.IoutBn.rst @@ -0,0 +1,4 @@ +Multiprocessing test test_mymanager() now also expects -SIGTERM, not only +exitcode 0. BaseManager._finalize_manager() sends SIGTERM to the manager +process if it takes longer than 1 second to stop, which happens on slow +buildbots. |