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

ruby-changes:14096

From: usa <ko1@a...>
Date: Wed, 25 Nov 2009 13:10:12 +0900 (JST)
Subject: [ruby-changes:14096] Ruby:r25910 (trunk): * bootsraptest/test_io.rb: skip the test of io/nonblock on Windows.

usa	2009-11-25 13:09:59 +0900 (Wed, 25 Nov 2009)

  New Revision: 25910

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

  Log:
    * bootsraptest/test_io.rb: skip the test of io/nonblock on Windows.

  Modified files:
    trunk/bootstraptest/test_io.rb

Index: bootstraptest/test_io.rb
===================================================================
--- bootstraptest/test_io.rb	(revision 25909)
+++ bootstraptest/test_io.rb	(revision 25910)
@@ -14,6 +14,7 @@
     require "timeout"
     timeout(3) do
       r, w = IO.pipe
+      w.nonblock?
       w.nonblock = true
       w.write_nonblock("a" * 100000)
       w.nonblock = false
@@ -26,7 +27,7 @@
       t1.join
       t2.join
     end
-  rescue LoadError, TimeoutError
+  rescue LoadError, TimeoutError, NotImplementedError
   end
 }, '[ruby-dev:32566]'
 

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

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