aboutsummaryrefslogtreecommitdiffstats
path: root/test/io
diff options
context:
space:
mode:
Diffstat (limited to 'test/io')
-rw-r--r--test/io/nonblock/test_flush.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/io/nonblock/test_flush.rb b/test/io/nonblock/test_flush.rb
index 249b2c913b..67ac1fcaa4 100644
--- a/test/io/nonblock/test_flush.rb
+++ b/test/io/nonblock/test_flush.rb
@@ -14,18 +14,18 @@ class TestIONonblock < Test::Unit::TestCase
w << "b"
w.flush
w << "a" * 4096
- Thread.new {
- Thread.pass
- w.close
- }
result = ""
- t = Thread.new {
- while (Thread.pass; s = r.read(4096))
- result << s
- end
- }
- w.flush # assert_raise(IOError, "[ruby-dev:24985]") {w.flush}
timeout(10) {
+ Thread.new {
+ Thread.pass
+ w.close
+ }
+ t = Thread.new {
+ while (Thread.pass; s = r.read(4096))
+ result << s
+ end
+ }
+ w.flush # assert_raise(IOError, "[ruby-dev:24985]") {w.flush}
assert_nothing_raised {t.join}
}
assert_equal(4097, result.size)