From 27fb9d272daaae89089dfb61849ebe8e7aa6c833 Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Thu, 29 Jul 2021 13:49:35 +0900 Subject: [PATCH] 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 --- test/socket/test_socket.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/socket/test_socket.rb b/test/socket/test_socket.rb index 16c359eca1..9807db3674 100644 --- a/test/socket/test_socket.rb +++ b/test/socket/test_socket.rb @@ -1,5 +1,9 @@ # 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 require "socket" require "tmpdir"