* test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_no_create,
TestGDBM2#test_writer_open_notexist): We only need to skip libgdbm 1.8.0, not all 1.8.x. 1.8.1 or later don't have GDBM_WRITER sickness. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cb96213fad
commit
77a7137c4b
@ -1,3 +1,9 @@
|
|||||||
|
Fri Jan 28 23:20:28 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||||
|
|
||||||
|
* test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_no_create,
|
||||||
|
TestGDBM2#test_writer_open_notexist): We only need to skip libgdbm 1.8.0,
|
||||||
|
not all 1.8.x. 1.8.1 or later don't have GDBM_WRITER sickness.
|
||||||
|
|
||||||
Fri Jan 28 21:56:57 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
Fri Jan 28 21:56:57 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||||
|
|
||||||
* ext/dbm/extconf.rb: Added new header places for Fedora13.
|
* ext/dbm/extconf.rb: Added new header places for Fedora13.
|
||||||
|
@ -92,7 +92,7 @@ if defined? GDBM
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
def test_s_open_no_create
|
def test_s_open_no_create
|
||||||
skip "this test is failed on libgdbm 1.8.0" if /1\.8\./ =~ GDBM::VERSION
|
skip "gdbm_open(GDBM_WRITER) is broken on libgdbm 1.8.0" if /1\.8\.0/ =~ GDBM::VERSION
|
||||||
assert_nil(gdbm = GDBM.open("#{@tmpdir}/#{@prefix}", nil))
|
assert_nil(gdbm = GDBM.open("#{@tmpdir}/#{@prefix}", nil))
|
||||||
ensure
|
ensure
|
||||||
gdbm.close if gdbm
|
gdbm.close if gdbm
|
||||||
@ -667,20 +667,13 @@ if defined? GDBM
|
|||||||
end
|
end
|
||||||
|
|
||||||
def test_writer_open_notexist
|
def test_writer_open_notexist
|
||||||
if /1\.8\./ =~ GDBM::VERSION
|
skip "gdbm_open(GDBM_WRITER) is broken on libgdbm 1.8.0" if /1\.8\.0/ =~ GDBM::VERSION
|
||||||
# 1.8.x are using O_RDWR|O_CREAT.
|
|
||||||
assert_nothing_raised {
|
|
||||||
GDBM.open("#{@tmproot}/a", 0666, GDBM::WRITER)
|
|
||||||
}
|
|
||||||
else
|
|
||||||
# 1.7.x are using O_RDWR.
|
|
||||||
assert_raise(Errno::ENOENT) {
|
assert_raise(Errno::ENOENT) {
|
||||||
GDBM.open("#{@tmproot}/a", 0666, GDBM::WRITER)
|
GDBM.open("#{@tmproot}/a", 0666, GDBM::WRITER)
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_wrcreat_open_notexist
|
def test_wrcreat_open_notexist
|
||||||
v = GDBM.open("#{@tmproot}/a", 0666, GDBM::WRCREAT)
|
v = GDBM.open("#{@tmproot}/a", 0666, GDBM::WRCREAT)
|
||||||
assert_instance_of(GDBM, v)
|
assert_instance_of(GDBM, v)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user