aboutsummaryrefslogtreecommitdiffstats
path: root/test/socket
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-13 05:18:49 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-13 05:18:49 +0000
commit54ad3167e8b34af03c3382174ec21e00124d6b4d (patch)
treeecc753002cf6dc817b5b241b11b1c164bbcc222b /test/socket
parentd7c806c079bbc3f62476f751ba932732092b8f46 (diff)
downloadruby-54ad3167e8b34af03c3382174ec21e00124d6b4d.tar.gz
tests: support Linux kernels with CONFIG_IPV6=n
Detecting the presence of constants in C headers is insufficient, as a Linux kernel can be built with CONFIG_IPV6=n git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65055 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/socket')
-rw-r--r--test/socket/test_udp.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/socket/test_udp.rb b/test/socket/test_udp.rb
index bec2181918..f060b65f2c 100644
--- a/test/socket/test_udp.rb
+++ b/test/socket/test_udp.rb
@@ -20,9 +20,13 @@ class TestSocket_UDPSocket < Test::Unit::TestCase
assert_match(/AF_INET\b/, sock.inspect)
}
if Socket.const_defined?(:AF_INET6)
- UDPSocket.open(Socket::AF_INET6) {|sock|
- assert_match(/AF_INET6\b/, sock.inspect)
- }
+ begin
+ UDPSocket.open(Socket::AF_INET6) {|sock|
+ assert_match(/AF_INET6\b/, sock.inspect)
+ }
+ rescue Errno::EAFNOSUPPORT
+ skip 'AF_INET6 not supported by kernel'
+ end
end
end