mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bootstraptest/test_knownbug.rb: move a feature bug. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
20 lines
437 B
Ruby
20 lines
437 B
Ruby
#
|
|
# This test file concludes tests which point out known bugs.
|
|
# So all tests will cause failure.
|
|
#
|
|
|
|
assert_finish 2, %q{
|
|
require "io/nonblock"
|
|
r, w = IO.pipe
|
|
w.nonblock = true
|
|
w.write_nonblock("a" * 100000)
|
|
w.nonblock = false
|
|
t1 = Thread.new { w.write("b" * 4096) }
|
|
t2 = Thread.new { w.write("c" * 4096) }
|
|
sleep 0.5
|
|
r.sysread(4096).length
|
|
sleep 0.5
|
|
r.sysread(4096).length
|
|
t1.join
|
|
t2.join
|
|
}, '[ruby-dev:32566]'
|