2007-08-28 23:48:19 -04:00
|
|
|
#
|
|
|
|
# This test file concludes tests which point out known bugs.
|
|
|
|
# So all tests will cause failure.
|
|
|
|
#
|
2007-12-25 02:27:15 -05:00
|
|
|
|
|
|
|
assert_finish 1, %q{
|
|
|
|
r, w = IO.pipe
|
|
|
|
Thread.new {
|
|
|
|
w << "ab"
|
|
|
|
sleep 0.1
|
|
|
|
w << "ab"
|
|
|
|
}
|
|
|
|
p r.gets("abab")
|
|
|
|
}
|