summaryrefslogtreecommitdiff
path: root/spec/ruby/library/socket/spec_helper.rb
blob: 5a6dea7aa727f027930b0969c57bc3f6ba8bc693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require_relative '../../spec_helper'
require 'socket'

if %w[rbx truffleruby].include?(RUBY_ENGINE)
  MSpec.enable_feature :pure_ruby_addrinfo
end

MSpec.enable_feature :sock_packet if Socket.const_defined?(:SOCK_PACKET)
MSpec.enable_feature :unix_socket unless PlatformGuard.windows?
MSpec.enable_feature :udp_cork if Socket.const_defined?(:UDP_CORK)
MSpec.enable_feature :tcp_cork if Socket.const_defined?(:TCP_CORK)
MSpec.enable_feature :ipv6_pktinfo if Socket.const_defined?(:IPV6_PKTINFO)
MSpec.enable_feature :ip_mtu if Socket.const_defined?(:IP_MTU)
MSpec.enable_feature :ipv6_nexthop if Socket.const_defined?(:IPV6_NEXTHOP)
MSpec.enable_feature :tcp_info if Socket.const_defined?(:TCP_INFO)
MSpec.enable_feature :ancillary_data if Socket.const_defined?(:AncillaryData)