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

test/socket/test_socket.rb: skip on Solaris

The test fails on Solaris 10. Maybe due to the IPv6 configuration on the
server, but I have no idea at all. I've asked @ngoto to investigate the
issue, so will tentatively skip the tests on Solaris

http://rubyci.s3.amazonaws.com/solaris10-gcc/ruby-master/log/20210729T040002Z.fail.html.gz
This commit is contained in:
Yusuke Endoh 2021-07-29 13:49:35 +09:00
parent 64adeeadaa
commit 27fb9d272d

View file

@ -1,5 +1,9 @@
# frozen_string_literal: true # frozen_string_literal: true
# tentatively disabled due to IPv6 configuration issue on Solaris CI
# http://rubyci.s3.amazonaws.com/solaris10-gcc/ruby-master/log/20210729T040002Z.fail.html.gz
return if /solaris/ =~ RUBY_PLATFORM
begin begin
require "socket" require "socket"
require "tmpdir" require "tmpdir"