1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test/ruby/test_marshal.rb: close pipes

* test/ruby/test_marshal.rb (TestMarshal#test_pipe): should close pipes.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35649 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-05-15 14:54:09 +00:00
parent 068253783e
commit 498a001fa7

View file

@ -103,16 +103,16 @@ class TestMarshal < Test::Unit::TestCase
def test_pipe
o1 = C.new("a" * 10000)
r, w = IO.pipe
t = Thread.new { Marshal.load(r) }
Marshal.dump(o1, w)
o2 = t.value
o2 = IO.pipe do |r, w|
Thread.new {Marshal.dump(o1, w)}
Marshal.load(r)
end
assert_equal(o1.str, o2.str)
r, w = IO.pipe
t = Thread.new { Marshal.load(r) }
Marshal.dump(o1, w, 2)
o2 = t.value
o2 = IO.pipe do |r, w|
Thread.new {Marshal.dump(o1, w, 2)}
Marshal.load(r)
end
assert_equal(o1.str, o2.str)
assert_raise(TypeError) { Marshal.dump("foo", Object.new) }