spec/ruby/library/socket/addrinfo/getnameinfo_spec.rb: skip on Android
FreeBSD's GETNAMEINFO(3) says: > If a link-layer address or UNIX-domain address is passed to > getnameinfo(), its ASCII representation will be stored in host. The > string pointed to by serv will be set to the empty string if non-NULL; > flags will always be ignored. Android seems to behave like FreeBSD.
This commit is contained in:
parent
09a042ae04
commit
bbc6799334
@ -21,18 +21,20 @@ describe 'Addrinfo#getnameinfo' do
|
||||
end
|
||||
|
||||
platform_is :linux do
|
||||
with_feature :unix_socket do
|
||||
describe 'using a UNIX Addrinfo' do
|
||||
before do
|
||||
@addr = Addrinfo.unix('cats')
|
||||
@host = Socket.gethostname
|
||||
end
|
||||
platform_is_not :android do
|
||||
with_feature :unix_socket do
|
||||
describe 'using a UNIX Addrinfo' do
|
||||
before do
|
||||
@addr = Addrinfo.unix('cats')
|
||||
@host = Socket.gethostname
|
||||
end
|
||||
|
||||
it 'returns the hostname and UNIX socket path' do
|
||||
host, path = @addr.getnameinfo
|
||||
it 'returns the hostname and UNIX socket path' do
|
||||
host, path = @addr.getnameinfo
|
||||
|
||||
host.should == @host
|
||||
path.should == 'cats'
|
||||
host.should == @host
|
||||
path.should == 'cats'
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user