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

Skip specs which make non-socket fd nonblocking on Windows

because Windows does not support nonblocking mode except sockets.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2017-05-12 10:10:15 +00:00
parent 683b89070e
commit 1f136bffe6

View file

@ -251,6 +251,7 @@ describe "C-API IO function" do
end
end
platform_is_not :windows do
describe "rb_io_wait_readable" do
it "returns false if there is no error condition" do
@o.rb_io_wait_readable(@r_io, false).should be_false
@ -276,6 +277,7 @@ describe "C-API IO function" do
thr.join
end
end
end
describe "rb_thread_wait_fd" do
it "waits til an fd is ready for reading" do