mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
1e4278c98d
* bootstraptest/test_io.rb, test_marshal.rb, test_objectspace.rb: ditto. * test/ruby/test_integer.rb, test_regexp.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14005 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
9 lines
191 B
Ruby
9 lines
191 B
Ruby
assert_finish 1, %q{
|
|
r, w = IO.pipe
|
|
t1 = Thread.new { r.sysread(1) }
|
|
t2 = Thread.new { r.sysread(1) }
|
|
sleep 0.1
|
|
w.write "a"
|
|
sleep 0.1
|
|
w.write "a"
|
|
}, '[ruby-dev:31866]'
|