test_io.rb: fix tempfile leaks
* test/ruby/test_io.rb (test_flush_in_finalizer2): cannot unlink opened file on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8f61283031
commit
fdb4c75a65
@ -2396,22 +2396,24 @@ End
|
|||||||
Tempfile.open("bug3910") {|t|
|
Tempfile.open("bug3910") {|t|
|
||||||
path = t.path
|
path = t.path
|
||||||
t.close
|
t.close
|
||||||
1.times do
|
begin
|
||||||
io = open(path,"w")
|
1.times do
|
||||||
io.instance_variable_set(:@test_flush_in_finalizer2, true)
|
io = open(path,"w")
|
||||||
io.print "hoge"
|
io.instance_variable_set(:@test_flush_in_finalizer2, true)
|
||||||
end
|
io.print "hoge"
|
||||||
assert_nothing_raised(TypeError, bug3910) do
|
end
|
||||||
GC.start
|
assert_nothing_raised(TypeError, bug3910) do
|
||||||
|
GC.start
|
||||||
|
end
|
||||||
|
ensure
|
||||||
|
ObjectSpace.each_object(File) {|f|
|
||||||
|
if f.instance_variables.include?(:@test_flush_in_finalizer2)
|
||||||
|
f.close
|
||||||
|
end
|
||||||
|
}
|
||||||
end
|
end
|
||||||
t.close!
|
t.close!
|
||||||
}
|
}
|
||||||
ensure
|
|
||||||
ObjectSpace.each_object(File) {|f|
|
|
||||||
if f.instance_variables.include?(:@test_flush_in_finalizer2)
|
|
||||||
f.close
|
|
||||||
end
|
|
||||||
}
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_readlines_limit_0
|
def test_readlines_limit_0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user