1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

See the string "GDBM version".

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2011-12-06 06:59:29 +00:00
parent 0209f8d476
commit 1ff15071d0

View file

@ -105,7 +105,7 @@ if defined? DBM
end
def test_s_open_no_create
skip "dbm_open() is broken on libgdbm 1.8.0" if /1\.8\.0/ =~ DBM::VERSION
skip "dbm_open() is broken on libgdbm 1.8.0 or prior" if /GDBM version 1\.(?:[0-7]|8\.0)/ =~ DBM::VERSION
assert_nil(dbm = DBM.open("#{@tmpdir}/#{@prefix}", nil))
ensure
dbm.close if dbm
@ -529,7 +529,7 @@ if defined? DBM
end
def test_writer_open_notexist
skip "dbm_open() is broken on libgdbm 1.8.0" if /1\.8\.0/ =~ DBM::VERSION
skip "dbm_open() is broken on libgdbm 1.8.0 or prior" if /GDBM version 1\.(?:[0-7]|8\.0)/ =~ DBM::VERSION
assert_raise(Errno::ENOENT) {
DBM.open("#{@tmproot}/a", 0666, DBM::WRITER)
}