From 580e2f35a84d841f2b85c2d1ee4e0d38a1c26356 Mon Sep 17 00:00:00 2001 From: arton Date: Mon, 18 Apr 2011 16:08:07 +0000 Subject: [PATCH] * test/ruby/test_io.rb (TestIO#test_cross_thread_close_fd): skip cross thread pipe close if windows git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31306 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/ruby/test_io.rb | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index cd8e85c83e..3b85a498bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Apr 19 01:00:21 2011 Tajima Akio + + * test/ruby/test_io.rb (TestIO#test_cross_thread_close_fd): + skip cross thread pipe close if windows + Mon Apr 18 12:15:46 2011 NAKAMURA Usaku * test/ruby/test_range.rb (TestRange#test_step_ruby_core_35753): diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 3d086b3750..25e6ddbe7f 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -1811,6 +1811,7 @@ End end def test_cross_thread_close_fd + skip "cross thread close causes hung-up if pipe." if /mswin|bccwin|mingw/ =~ RUBY_PLATFORM with_pipe do |r,w| read_thread = Thread.new do begin