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

ruby-changes:39849

From: odaira <ko1@a...>
Date: Fri, 25 Sep 2015 08:02:47 +0900 (JST)
Subject: [ruby-changes:39849] odaira:r51930 (trunk): * test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_lock): skip

odaira	2015-09-25 08:02:19 +0900 (Fri, 25 Sep 2015)

  New Revision: 51930

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

  Log:
    * 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 files:
    trunk/ChangeLog
    trunk/test/gdbm/test_gdbm.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 51929)
+++ ChangeLog	(revision 51930)
@@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Fri Sep 25 07:54:05 2015  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]
+
 Thu Sep 24 17:25:09 2015  Nobuyoshi Nakada  <nobu@r...>
 
 	* parse.y (paren_args): fix separator token at `foo::bar()` in
Index: test/gdbm/test_gdbm.rb
===================================================================
--- test/gdbm/test_gdbm.rb	(revision 51929)
+++ test/gdbm/test_gdbm.rb	(revision 51930)
@@ -146,7 +146,7 @@ if defined? GDBM https://github.com/ruby/ruby/blob/trunk/test/gdbm/test_gdbm.rb#L146
     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}"
 

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

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