aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--test/ruby/test_io.rb8
2 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d0c793564f..1edc0114fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Dec 14 13:52:19 2010 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * test/ruby/test_io.rb (test_flush_in_finalizer[12]): should close
+ temporary file because it's only used for taking pathname and
+ unlinking the file after the end of the test (in GC phase).
+
Tue Dec 14 13:34:33 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/zlib/zlib.c (gzfile_s_open): should close the IO if some error
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 73a16de4cc..f8186840f9 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -1677,7 +1677,9 @@ End
def test_flush_in_finalizer1
require 'tempfile'
bug3910 = '[ruby-dev:42341]'
- path = Tempfile.new("bug3910").path
+ t = Tempfile.new("bug3910")
+ path = t.path
+ t.close
fds = []
assert_nothing_raised(TypeError, bug3910) do
500.times {
@@ -1693,7 +1695,9 @@ End
def test_flush_in_finalizer2
require 'tempfile'
bug3910 = '[ruby-dev:42341]'
- path = Tempfile.new("bug3910").path
+ t = Tempfile.new("bug3910")
+ path = t.path
+ t.close
1.times do
io = open(path,"w")
io.print "hoge"