summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-25 08:32:49 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-25 08:32:49 +0000
commit09298fae6be8fa486c67db4b830a6ca27c9b7c2d (patch)
tree9b8c8f67e4373d948bb5a9145b5bb84da6bfd242
parentc3ec5fd6dafc50485e888c1f6701c6f2f068187a (diff)
merge revision(s) 51930: [Backport #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
-rw-r--r--ChangeLog6
-rw-r--r--test/gdbm/test_gdbm.rb2
-rw-r--r--version.h2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 67ee3b978d..d197fb58ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Mar 25 17:32:34 2016 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]
+
Fri Mar 25 17:28:13 2016 Rei Odaira <Rei.Odaira@gmail.com>
* thread_pthread.c (getstack): __pi_stacksize returned by
diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb
index b406d59dc2..1bf6442184 100644
--- a/test/gdbm/test_gdbm.rb
+++ b/test/gdbm/test_gdbm.rb
@@ -151,7 +151,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}"
diff --git a/version.h b/version.h
index 30bd508393..a430d6521e 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.1.9"
#define RUBY_RELEASE_DATE "2016-03-25"
-#define RUBY_PATCHLEVEL 462
+#define RUBY_PATCHLEVEL 463
#define RUBY_RELEASE_YEAR 2016
#define RUBY_RELEASE_MONTH 3