1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
arton 2011-04-18 16:08:07 +00:00
parent e16fb91966
commit 580e2f35a8
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Tue Apr 19 01:00:21 2011 Tajima Akio <artonx@yahoo.co.jp>
* 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 <usa@ruby-lang.org>
* test/ruby/test_range.rb (TestRange#test_step_ruby_core_35753):

View file

@ -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