summaryrefslogtreecommitdiff
path: root/test/ruby/test_io.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r--test/ruby/test_io.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 6d7f94eaab..5fc3b133dd 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -823,15 +823,15 @@ class TestIO < Test::Unit::TestCase
end)
end
- def test_readpartial_error
+ def test_readpartial_lock
with_pipe do |r, w|
s = ""
t = Thread.new { r.readpartial(5, s) }
0 until s.size == 5
- s.clear
+ assert_raise(RuntimeError) { s.clear }
w.write "foobarbaz"
w.close
- assert_raise(RuntimeError) { t.join }
+ assert_equal("fooba", t.value)
end
end
@@ -858,15 +858,15 @@ class TestIO < Test::Unit::TestCase
end)
end
- def test_read_error
+ def test_read_lock
with_pipe do |r, w|
s = ""
t = Thread.new { r.read(5, s) }
0 until s.size == 5
- s.clear
+ assert_raise(RuntimeError) { s.clear }
w.write "foobarbaz"
w.close
- assert_raise(RuntimeError) { t.join }
+ assert_equal("fooba", t.value)
end
end