[前][次][番号順一覧][スレッド一覧]

ruby-changes:42191

From: usa <ko1@a...>
Date: Fri, 25 Mar 2016 17:32:53 +0900 (JST)
Subject: [ruby-changes:42191] usa:r54265 (ruby_2_1): merge revision(s) 51930: [Backport #12149]

usa	2016-03-25 17:32:49 +0900 (Fri, 25 Mar 2016)

  New Revision: 54265

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54265

  Log:
    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]

  Modified directories:
    branches/ruby_2_1/
  Modified files:
    branches/ruby_2_1/ChangeLog
    branches/ruby_2_1/test/gdbm/test_gdbm.rb
    branches/ruby_2_1/version.h
Index: ruby_2_1/ChangeLog
===================================================================
--- ruby_2_1/ChangeLog	(revision 54264)
+++ ruby_2_1/ChangeLog	(revision 54265)
@@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_1/ChangeLog#L1
+Fri Mar 25 17:32:34 2016  Rei Odaira  <Rei.Odaira@g...>
+
+	* 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@g...>
 
 	* thread_pthread.c (getstack): __pi_stacksize returned by
Index: ruby_2_1/version.h
===================================================================
--- ruby_2_1/version.h	(revision 54264)
+++ ruby_2_1/version.h	(revision 54265)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_1/version.h#L1
 #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
Index: ruby_2_1/test/gdbm/test_gdbm.rb
===================================================================
--- ruby_2_1/test/gdbm/test_gdbm.rb	(revision 54264)
+++ ruby_2_1/test/gdbm/test_gdbm.rb	(revision 54265)
@@ -151,7 +151,7 @@ if defined? GDBM https://github.com/ruby/ruby/blob/trunk/ruby_2_1/test/gdbm/test_gdbm.rb#L151
     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}"
 

Property changes on: ruby_2_1
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r51930


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]