From 7a5ad716d0d4bfe8d28d95ca098f3aca3b0d63f5 Mon Sep 17 00:00:00 2001 From: shugo Date: Sun, 4 Dec 2016 05:05:54 +0000 Subject: [PATCH] Specify the socktype explicitly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56978 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/net/ftp/test_ftp.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/net/ftp/test_ftp.rb b/test/net/ftp/test_ftp.rb index 64592765e8..6976f11b8f 100644 --- a/test/net/ftp/test_ftp.rb +++ b/test/net/ftp/test_ftp.rb @@ -9,7 +9,11 @@ require "tempfile" class FTPTest < Test::Unit::TestCase SERVER_NAME = "localhost" SERVER_ADDR = - Addrinfo.getaddrinfo(SERVER_NAME, 0)[0].ip_address rescue "127.0.0.1" + begin + Addrinfo.getaddrinfo(SERVER_NAME, 0, nil, :STREAM)[0].ip_address + rescue SocketError + "127.0.0.1" + end CA_FILE = File.expand_path("../fixtures/cacert.pem", __dir__) SERVER_KEY = File.expand_path("../fixtures/server.key", __dir__) SERVER_CERT = File.expand_path("../fixtures/server.crt", __dir__)