summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-04-03 08:52:46 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-04-03 08:59:05 -0700
commitba4ff2552e9bca762f0953e5697438efebe22547 (patch)
treebc9dfd63430806f14531375106e40380e26f6d9a /test/ruby
parent3cb5e7558ddbaf9535a6937616fb9e8db13dbcbb (diff)
downloadruby-ba4ff2552e9bca762f0953e5697438efebe22547.tar.gz
Avoid failing test_enable on warnings
This fails on RubyCI due to RJIT warnings too often. It should be enough to test RJIT feature in test_rjit_version. We only want warnings instead of test failures when there are warnings, at least for this case.
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_rubyoptions.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index 64d8d93d3f..6aacb80d2f 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -172,10 +172,15 @@ class TestRubyOptions < Test::Unit::TestCase
end
def test_enable
- if JITSupport.yjit_supported? || JITSupport.rjit_supported?
+ if JITSupport.yjit_supported?
assert_in_out_err(%w(--enable all -e) + [""], "", [], [])
assert_in_out_err(%w(--enable-all -e) + [""], "", [], [])
assert_in_out_err(%w(--enable=all -e) + [""], "", [], [])
+ elsif JITSupport.rjit_supported?
+ # Avoid failing tests by RJIT warnings
+ assert_in_out_err(%w(--enable all --disable rjit -e) + [""], "", [], [])
+ assert_in_out_err(%w(--enable-all --disable-rjit -e) + [""], "", [], [])
+ assert_in_out_err(%w(--enable=all --disable=rjit -e) + [""], "", [], [])
end
assert_in_out_err(%w(--enable foobarbazqux -e) + [""], "", [],
/unknown argument for --enable: `foobarbazqux'/)