summaryrefslogtreecommitdiff
path: root/test/io/wait/test_io_wait.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/io/wait/test_io_wait.rb')
-rw-r--r--test/io/wait/test_io_wait.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/io/wait/test_io_wait.rb b/test/io/wait/test_io_wait.rb
index 46097e00c6..9d883aa821 100644
--- a/test/io/wait/test_io_wait.rb
+++ b/test/io/wait/test_io_wait.rb
@@ -62,13 +62,17 @@ class TestIOWait < Test::Unit::TestCase
end
def test_wait_forever
- Thread.new { sleep 0.01; @w.syswrite "." }
+ th = Thread.new { sleep 0.01; @w.syswrite "." }
assert_equal @r, @r.wait
+ ensure
+ th.join
end
def test_wait_eof
- Thread.new { sleep 0.01; @w.close }
+ th = Thread.new { sleep 0.01; @w.close }
assert_nil @r.wait
+ ensure
+ th.join
end
def test_wait_writable