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

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

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2009-11-25 04:09:59 +00:00
parent 9585749e8e
commit d3eb005737

View file

@ -14,6 +14,7 @@ assert_finish 10, %q{
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 @@ assert_finish 10, %q{
t1.join
t2.join
end
rescue LoadError, TimeoutError
rescue LoadError, TimeoutError, NotImplementedError
end
}, '[ruby-dev:32566]'