We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e736b5b commit abc6ea1Copy full SHA for abc6ea1
test/net/http/test_httpresponse.rb
@@ -78,7 +78,9 @@ def test_read_body_block
78
79
def test_read_body_block_mod
80
# http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3019353
81
- skip 'too unstable with --jit-wait, and extending read_timeout did not help it' if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
+ if defined?(RubyVM::JIT) && RubyVM::JIT.enabled? || defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
82
+ skip 'too unstable with --jit-wait, and extending read_timeout did not help it'
83
+ end
84
IO.pipe do |r, w|
85
buf = 'x' * 1024
86
buf.freeze
0 commit comments