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

Guard spec failing on Solaris

* https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable11x/ruby-trunk/log/20180817T182406Z.fail.html.gz

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64422 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2018-08-17 23:51:47 +00:00
parent fb01ef38a1
commit a2d2a55d0c

View file

@ -16,6 +16,7 @@ describe "Socket#connect_nonblock" do
@thread.join if @thread
end
platform_is_not :solaris do
it "connects the socket to the remote side" do
port = nil
accept = false
@ -48,6 +49,7 @@ describe "Socket#connect_nonblock" do
@socket.read(6).should == "hello!"
end
end
platform_is_not :freebsd, :solaris, :aix do
it "raises Errno::EINPROGRESS when the connect would block" do