Bug #7398
closedModify TestSSL#test_read_and_write to handle partial sysreads
Description
=begin
from github: https://github.com/ruby/ruby/pull/204
((*SSLSocket#sysread can return fewer bytes than you request. This test does client reads and writes and server reads and writes concurrently, which means on a parallel-threaded implementation like JRuby there's a chance the client side will see partial data come from sysread.
My change here ensures that the sysread has read everything written before doing comparisons, allowing for partial sysread results.*))
=end
Files
Updated by zzak (zzak _) almost 12 years ago
=begin
Description update:
((SSLSocket#sysread can return fewer bytes than you request. This test does client reads and writes and server reads and writes concurrently, which means on a parallel-threaded implementation like JRuby there's a chance the client side will see partial data come from sysread.))
((My change here ensures that the sysread has read everything written before doing comparisons, allowing for partial sysread results.))
=end
Updated by usa (Usaku NAKAMURA) almost 12 years ago
- Status changed from Open to Assigned
Updated by mame (Yusuke Endoh) over 11 years ago
- Target version changed from 2.0.0 to 2.6
Just an issue of test.
--
Yusuke Endoh mame@tsg.ne.jp
Updated by hsbt (Hiroshi SHIBATA) over 10 years ago
- Status changed from Assigned to Closed
- % Done changed from 0 to 100
Applied in changeset r46164.
- test/openssl/test_pair.rb: Modify TestSSL#test_read_and_write
to handle partial sysreads. [Bug #7398][ruby-core:49563] - test/openssl/test_ssl.rb: ditto.