* test/open-uri/test_open-uri.rb (TestOpenURI#test_read_timeout): this
test expects that the server thread will be killed in sleep, but 0.01 sec is too short to reach there. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36790 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ea16237c61
commit
a394604412
@ -1,3 +1,9 @@
|
|||||||
|
Thu Aug 23 11:32:44 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/open-uri/test_open-uri.rb (TestOpenURI#test_read_timeout): this
|
||||||
|
test expects that the server thread will be killed in sleep, but 0.01
|
||||||
|
sec is too short to reach there.
|
||||||
|
|
||||||
Thu Aug 23 10:49:28 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
Thu Aug 23 10:49:28 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* configure.in: use the value of --with-opt-dir on building ruby
|
* configure.in: use the value of --with-opt-dir on building ruby
|
||||||
|
@ -116,7 +116,7 @@ class TestOpenURI < Test::Unit::TestCase
|
|||||||
end
|
end
|
||||||
}
|
}
|
||||||
begin
|
begin
|
||||||
assert_raise(Net::ReadTimeout) { URI("http://127.0.0.1:#{port}/foo/bar").read(:read_timeout=>0.01) }
|
assert_raise(Net::ReadTimeout) { URI("http://127.0.0.1:#{port}/foo/bar").read(:read_timeout=>0.1) }
|
||||||
ensure
|
ensure
|
||||||
Thread.kill(th)
|
Thread.kill(th)
|
||||||
th.join
|
th.join
|
||||||
|
Loading…
x
Reference in New Issue
Block a user