diff options
author | Victor Stinner <vstinner@python.org> | 2019-12-09 10:57:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-09 10:57:05 (GMT) |
commit | a1838ec2592e5082c75c77888f2a7a3eb21133e5 (patch) | |
tree | 46c91b9a81903ff9ef48ed91107ebe10594b6837 /Misc/NEWS.d | |
parent | 109fc2792a490ee5cd8a423e17d415fbdedec5c8 (diff) | |
download | cpython-a1838ec2592e5082c75c77888f2a7a3eb21133e5.zip cpython-a1838ec2592e5082c75c77888f2a7a3eb21133e5.tar.gz cpython-a1838ec2592e5082c75c77888f2a7a3eb21133e5.tar.bz2 |
bpo-38547: Fix test_pty if the process is the session leader (GH-17519)
Fix test_pty: if the process is the session leader, closing the
master file descriptor raises a SIGHUP signal: simply ignore SIGHUP
when running the tests.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2019-12-09-11-32-34.bpo-38547.Juw54e.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-12-09-11-32-34.bpo-38547.Juw54e.rst b/Misc/NEWS.d/next/Tests/2019-12-09-11-32-34.bpo-38547.Juw54e.rst new file mode 100644 index 0000000..10f3cc0 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2019-12-09-11-32-34.bpo-38547.Juw54e.rst @@ -0,0 +1,3 @@ +Fix test_pty: if the process is the session leader, closing the master file +descriptor raises a SIGHUP signal: simply ignore SIGHUP when running the +tests. |