From 2d55537dce5fde5e3581351bd274ecabf1e284d7 Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 29 Jan 2013 03:06:40 +0000 Subject: * test/ruby/test_marshal.rb: remove temporally files early. * test/ruby/test_process.rb: ditto. * test/psych/test_exception.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_marshal.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/ruby/test_marshal.rb') diff --git a/test/ruby/test_marshal.rb b/test/ruby/test_marshal.rb index 74f950b64c..8a10ded463 100644 --- a/test/ruby/test_marshal.rb +++ b/test/ruby/test_marshal.rb @@ -336,7 +336,9 @@ class TestMarshal < Test::Unit::TestCase re = Tempfile.open("marshal_regexp") do |f| f.binmode.write("\x04\bI/\x00\x00\x06:\rencoding\"\rUS-ASCII") f.close - Marshal.load(f.open.binmode) + re2 = Marshal.load(f.open.binmode) + f.close(true) + re2 end assert_equal(//, re) end -- cgit v1.2.3