diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-09-17 21:01:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 21:01:20 (GMT) |
commit | 7484bdfd1e2e33fdd2c44dd4ffa044aacd495337 (patch) | |
tree | 6f6ac163dea13ad1de44293998587304cf212721 /Misc/NEWS.d | |
parent | 1fb399ba4e977e697d194769070316247237f68e (diff) | |
download | cpython-7484bdfd1e2e33fdd2c44dd4ffa044aacd495337.zip cpython-7484bdfd1e2e33fdd2c44dd4ffa044aacd495337.tar.gz cpython-7484bdfd1e2e33fdd2c44dd4ffa044aacd495337.tar.bz2 |
bpo-34587, test_socket: remove RDSTest.testCongestion() (GH-9277)
The test tries to fill the receiver's socket buffer and expects an
error. But the RDS protocol doesn't require that. Moreover, the Linux
implementation of RDS expects that the producer of the messages
reduces its rate, it's not the role of the receiver to trigger an
error.
The test fails on Fedora 28 by design, so remove it.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2018-09-13-20-58-07.bpo-34587.rCcxp3.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2018-09-13-20-58-07.bpo-34587.rCcxp3.rst b/Misc/NEWS.d/next/Tests/2018-09-13-20-58-07.bpo-34587.rCcxp3.rst new file mode 100644 index 0000000..8d45418 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2018-09-13-20-58-07.bpo-34587.rCcxp3.rst @@ -0,0 +1,5 @@ +test_socket: Remove RDSTest.testCongestion(). The test tries to fill the +receiver's socket buffer and expects an error. But the RDS protocol doesn't +require that. Moreover, the Linux implementation of RDS expects that the +producer of the messages reduces its rate, it's not the role of the receiver to +trigger an error. The test fails on Fedora 28 by design, so just remove it. |