ruby-changes:22809
From: usa <ko1@a...>
Date: Wed, 29 Feb 2012 15:41:04 +0900 (JST)
Subject: [ruby-changes:22809] usa:r34858 (trunk): * test/ruby/test_io.rb (TestIO#test_readpartial_locktmp): skip on
usa 2012-02-29 15:40:41 +0900 (Wed, 29 Feb 2012) New Revision: 34858 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34858 Log: * test/ruby/test_io.rb (TestIO#test_readpartial_locktmp): skip on windows because of the platform restriction. Modified files: trunk/ChangeLog trunk/test/ruby/test_io.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 34857) +++ ChangeLog (revision 34858) @@ -1,3 +1,8 @@ +Wed Feb 29 15:39:39 2012 NAKAMURA Usaku <usa@r...> + + * test/ruby/test_io.rb (TestIO#test_readpartial_locktmp): skip on + windows because of the platform restriction. + Wed Feb 29 15:38:50 2012 NAKAMURA Usaku <usa@r...> * test/ruby/memory_status.rb (Memory): syntax error. Index: test/ruby/test_io.rb =================================================================== --- test/ruby/test_io.rb (revision 34857) +++ test/ruby/test_io.rb (revision 34858) @@ -2258,6 +2258,7 @@ end def test_readpartial_locktmp + skip "nonblocking mode is not supported for pipe on this platform" if /mswin|bccwin|mingw/ =~ RUBY_PLATFORM bug6099 = '[ruby-dev:45297]' buf = " " * 100 data = "a" * 100 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/