summaryrefslogtreecommitdiff
path: root/test/socket
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2021-07-29 13:49:35 +0900
committerYusuke Endoh <mame@ruby-lang.org>2021-07-29 13:51:43 +0900
commit27fb9d272daaae89089dfb61849ebe8e7aa6c833 (patch)
tree1a8e58ca97a538f79e2ca9e4a8a1d68ff0729c84 /test/socket
parent64adeeadaa8d7fe210d0605eb6c9b0b1dcf49746 (diff)
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
Diffstat (limited to 'test/socket')
-rw-r--r--test/socket/test_socket.rb4
1 files changed, 4 insertions, 0 deletions
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"