aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_io.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 15:49:13 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 15:49:13 +0000
commit9b612d382de382913d3eab12dac986fc5fc21864 (patch)
tree02415ac36a66f8bee02954d820dac33104775678 /test/ruby/test_io.rb
parent36276b6f40fe87aec2883a7641a249002a3bb7a9 (diff)
downloadruby-9b612d382de382913d3eab12dac986fc5fc21864.tar.gz
* test/lib/minitest/unit.rb: Use Tempfile#close! instead of
Tempfile#unlink to close file descriptors. * test/openssl/test_config.rb: Ditto. * test/ruby/test_io.rb: Ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r--test/ruby/test_io.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 170b08d310..b104086d43 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -1924,7 +1924,7 @@ class TestIO < Test::Unit::TestCase
assert_raise(Errno::EBADF, feature2250) {t.close}
end
ensure
- t.unlink
+ t.close!
end
def test_autoclose_false_closed_by_finalizer
@@ -1940,7 +1940,7 @@ class TestIO < Test::Unit::TestCase
assert_nothing_raised(Errno::EBADF, feature2250) {t.close}
end
ensure
- t.unlink
+ t.close!
end
def test_open_redirect
@@ -2366,7 +2366,7 @@ End
}
ensure
GC.start
- t.unlink
+ t.close!
end
def test_flush_in_finalizer2
@@ -2382,7 +2382,7 @@ End
assert_nothing_raised(TypeError, bug3910) do
GC.start
end
- t.unlink
+ t.close!
}
end