summaryrefslogtreecommitdiff
path: root/test/net/http
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-06-22 10:45:08 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-06-22 10:45:39 -0700
commit574a4f0217c77c0ee77890c5ee2fdaafcddfa6fb (patch)
tree95aae087c8ee6cc4130ffb78c21b2a94968c4bb5 /test/net/http
parent079ed74d690f1efadd64138983ef2fb9ffbd1aff (diff)
Skip test_read_body_block_mod for --jit-wait
Diffstat (limited to 'test/net/http')
-rw-r--r--test/net/http/test_httpresponse.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/net/http/test_httpresponse.rb b/test/net/http/test_httpresponse.rb
index f408195771..628414493c 100644
--- a/test/net/http/test_httpresponse.rb
+++ b/test/net/http/test_httpresponse.rb
@@ -77,6 +77,8 @@ EOS
end
def test_read_body_block_mod
+ # http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3019353
+ skip 'too unstable with --jit-wait, and extending read_timeout did not help it' if RubyVM::MJIT.enabled?
IO.pipe do |r, w|
buf = 'x' * 1024
buf.freeze
@@ -88,7 +90,6 @@ EOS
:ok
end
io = Net::BufferedIO.new(r)
- io.read_timeout *= 10 if RubyVM::MJIT.enabled? # for --jit-wait
res = Net::HTTPResponse.read_new(io)
nr = 0
res.reading_body io, true do