summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-31 02:37:15 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-31 02:37:15 +0000
commit97943549d5f9c515f2a7c67682ec753002950b35 (patch)
treea386b2daed4c48c1cb5e0f323d74c9c339d34324
parent8d6aa6a5392cf096123718ab81b0d11f22297c0a (diff)
* test/gdbm/test_gdbm.rb (teardown): should remove GDBM temporary
file. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/gdbm/test_gdbm.rb4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d46abd3176..0b00b61fae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Aug 31 11:35:43 2005 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * test/gdbm/test_gdbm.rb (teardown): should remove GDBM temporary
+ file.
+
Wed Aug 31 10:30:56 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* process.c (proc_detach, proc_setmaxgroups): missing argument type
diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb
index 74223b0bb4..f4a6bfb197 100644
--- a/test/gdbm/test_gdbm.rb
+++ b/test/gdbm/test_gdbm.rb
@@ -42,8 +42,8 @@ if defined? GDBM
ObjectSpace.each_object(GDBM) do |obj|
obj.close unless obj.closed?
end
- File.delete *Dir.glob("tmptest_gdbm*").to_a
- p Dir.glob("tmptest_gdbm*") if $DEBUG
+ File.delete *Dir.glob("*tmptest_gdbm*").to_a
+ p Dir.glob("*tmptest_gdbm*") if $DEBUG
end
def check_size(expect, gdbm=@gdbm)