ruby-changes:4679
From: ko1@a...
Date: Wed, 23 Apr 2008 15:33:38 +0900 (JST)
Subject: [ruby-changes:4679] kazu - Ruby:r16173 (ruby_1_8): * test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_no_create): failed
kazu 2008-04-23 15:33:20 +0900 (Wed, 23 Apr 2008)
New Revision: 16173
Modified files:
branches/ruby_1_8/ChangeLog
branches/ruby_1_8/test/gdbm/test_gdbm.rb
Log:
* test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_no_create): failed
notice moved from comment to assertion message. [ruby-dev:29127]
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/test/gdbm/test_gdbm.rb?r1=16173&r2=16172&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/ChangeLog?r1=16173&r2=16172&diff_format=u
Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog (revision 16172)
+++ ruby_1_8/ChangeLog (revision 16173)
@@ -1,3 +1,8 @@
+Wed Apr 23 15:28:52 2008 Kazuhiro NISHIYAMA <zn@m...>
+
+ * test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_no_create): failed
+ notice moved from comment to assertion message. [ruby-dev:29127]
+
Wed Apr 23 14:00:05 2008 Akinori MUSHA <knu@i...>
* lib/mkmf.rb (create_makefile): Add a missing dependency on the
Index: ruby_1_8/test/gdbm/test_gdbm.rb
===================================================================
--- ruby_1_8/test/gdbm/test_gdbm.rb (revision 16172)
+++ ruby_1_8/test/gdbm/test_gdbm.rb (revision 16173)
@@ -90,8 +90,8 @@
end
end
def test_s_open_no_create
- # this test is failed on libgdbm 1.8.0
- assert_nil(gdbm = GDBM.open("tmptest_gdbm", nil))
+ assert_nil(gdbm = GDBM.open("tmptest_gdbm", nil),
+ "this test is failed on libgdbm 1.8.0")
ensure
gdbm.close if gdbm
end
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/