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

ruby-changes:43394

From: duerst <ko1@a...>
Date: Mon, 20 Jun 2016 18:39:36 +0900 (JST)
Subject: [ruby-changes:43394] duerst:r55468 (trunk): * test/ruby/test_in.rb: Skip test_open_fifo_does_not_block_other_threads

duerst	2016-06-20 18:39:31 +0900 (Mon, 20 Jun 2016)

  New Revision: 55468

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

  Log:
    * test/ruby/test_in.rb: Skip test_open_fifo_does_not_block_other_threads
             on cygwin. Fifos seem to work okay in cygwin, but this test repeatedly
      hangs.

  Modified files:
    trunk/ChangeLog
    trunk/test/ruby/test_io.rb
Index: test/ruby/test_io.rb
===================================================================
--- test/ruby/test_io.rb	(revision 55467)
+++ test/ruby/test_io.rb	(revision 55468)
@@ -3253,7 +3253,7 @@ End https://github.com/ruby/ruby/blob/trunk/test/ruby/test_io.rb#L3253
         assert_equal("foo", t1_value)
       EOS
     }
-  end if /mswin|mingw|bccwin/ !~ RUBY_PLATFORM
+  end if /mswin|mingw|bccwin|cygwin/ !~ RUBY_PLATFORM
 
   def test_open_flag
     make_tempfile do |t|
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 55467)
+++ ChangeLog	(revision 55468)
@@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Mon Jun 20 18:39:16 2016  Martin Duerst  <duerst@i...>
+
+	* test/ruby/test_in.rb: Skip test_open_fifo_does_not_block_other_threads
+          on cygwin. Fifos seem to work okay in cygwin, but this test repeatedly
+	  hangs.
+
 Mon Jun 20 13:35:06 2016  Shugo Maeda  <shugo@r...>
 
 	* vm.c (invoke_bmethod, invoke_block_from_c_0): revert r52104

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

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