aboutsummaryrefslogtreecommitdiffstats
path: root/bootstraptest/test_knownbug.rb
blob: 8a1ef234140f34b019061c37c6204f9c3dcd3f38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# This test file concludes tests which point out known bugs.
# So all tests will cause failure.
#

assert_finish 1, %q{
  r, w = IO.pipe
  Thread.new {
  w << "ab"
  sleep 0.1
  w << "ab"
  }
  p r.gets("abab")
}