aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-01 12:19:15 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-01 12:19:15 +0000
commit28130c1c63a4b1cbcc05f11ef84cd414685c3b6c (patch)
treef7c4ae3b1b32d48f2f8d62f9cdd71f0484da4b9e
parented5de3814a1cd8e778c70d89d6c442ed17504385 (diff)
downloadruby-28130c1c63a4b1cbcc05f11ef84cd414685c3b6c.tar.gz
* test/net/http/test_http.rb (test_bind_to_local_port): Choose an open
port more reliably. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/net/http/test_http.rb4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 519ef8a4ef..aed11722bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Sep 1 21:17:54 2013 Tanaka Akira <akr@fsij.org>
+
+ * test/net/http/test_http.rb (test_bind_to_local_port): Choose an open
+ port more reliably.
+
Sun Sep 1 20:32:40 2013 Tanaka Akira <akr@fsij.org>
* bignum.c (big2str_base_poweroftwo): Renamed from
diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb
index 709a2e2370..b07e2a48d6 100644
--- a/test/net/http/test_http.rb
+++ b/test/net/http/test_http.rb
@@ -910,7 +910,9 @@ class TestNetHTTPLocalBind < Test::Unit::TestCase
http = Net::HTTP.new(config('host'), config('port'))
http.local_host = Addrinfo.tcp(config('host'), config('port')).ip_address
- http.local_port = [*10000..20000].shuffle.first.to_s
+ http.local_port = Addrinfo.tcp(config('host'), 0).bind {|s|
+ s.local_address.ip_port.to_s
+ }
assert_not_nil(http.local_host)
assert_not_nil(http.local_port)