Skip to content

Commit 09298fa

Browse files
committed
merge revision(s) 51930: [Backport ruby#12149]
* 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/branches/ruby_2_1@54265 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent c3ec5fd commit 09298fa

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Fri Mar 25 17:32:34 2016 Rei Odaira <Rei.Odaira@gmail.com>
2+
3+
* test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_lock): skip
4+
this test on AIX. The issue is the same as on Solaris.
5+
[ruby-dev:47631]
6+
17
Fri Mar 25 17:28:13 2016 Rei Odaira <Rei.Odaira@gmail.com>
28

39
* thread_pthread.c (getstack): __pi_stacksize returned by

test/gdbm/test_gdbm.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def open_db_child(dbname, *opts)
151151
end
152152

153153
def test_s_open_lock
154-
skip "GDBM.open would block when opening already locked gdbm file on platforms without flock and with lockf" if /solaris/ =~ RUBY_PLATFORM
154+
skip "GDBM.open would block when opening already locked gdbm file on platforms without flock and with lockf" if /solaris|aix/ =~ RUBY_PLATFORM
155155

156156
dbname = "#{@tmpdir}/#{@prefix}"
157157

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.1.9"
22
#define RUBY_RELEASE_DATE "2016-03-25"
3-
#define RUBY_PATCHLEVEL 462
3+
#define RUBY_PATCHLEVEL 463
44

55
#define RUBY_RELEASE_YEAR 2016
66
#define RUBY_RELEASE_MONTH 3

0 commit comments

Comments
 (0)