mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_lock): skip
this test on AIX. The issue is the same as on Solaris. [ruby-dev:47631] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
37230dd4e2
commit
9e18566e66
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri Sep 25 07:54:05 2015 Rei Odaira <Rei.Odaira@gmail.com>
|
||||
|
||||
* test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_lock): skip
|
||||
this test on AIX. The issue is the same as on Solaris.
|
||||
[ruby-dev:47631]
|
||||
|
||||
Thu Sep 24 17:25:09 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* parse.y (paren_args): fix separator token at `foo::bar()` in
|
||||
|
|
|
@ -146,7 +146,7 @@ if defined? GDBM
|
|||
end
|
||||
|
||||
def test_s_open_lock
|
||||
skip "GDBM.open would block when opening already locked gdbm file on platforms without flock and with lockf" if /solaris/ =~ RUBY_PLATFORM
|
||||
skip "GDBM.open would block when opening already locked gdbm file on platforms without flock and with lockf" if /solaris|aix/ =~ RUBY_PLATFORM
|
||||
|
||||
dbname = "#{@tmpdir}/#{@prefix}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue