summaryrefslogtreecommitdiff
path: root/bootstraptest/test_io.rb
blob: 8cd2730c6a0260bc625eda8331020af9447a4cac (plain)
1
2
3
4
5
6
7
8
9
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]'