diff options
author | Aaron Patterson <[email protected]> | 2021-09-08 12:47:39 -0700 |
---|---|---|
committer | Alan Wu <[email protected]> | 2021-10-20 18:19:40 -0400 |
commit | 554d76afb4ca5cf623fb76bde90fce6f87971be8 (patch) | |
tree | ab333ef84cba59e36aaf5e300031c60f4bcf85e8 /test | |
parent | afc5db43ca5d62feefac97f911a5d4ac33e9feda (diff) |
Revert "disable yjit when testing mjit"
This reverts commit e8622ce5c0a09c7213e4d536ddd0ef3ea68377ef.
Diffstat (limited to 'test')
-rw-r--r-- | test/ruby/test_rubyoptions.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index 3a63f37422..5db0f9efdd 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -164,9 +164,9 @@ class TestRubyOptions < Test::Unit::TestCase def test_enable if JITSupport.supported? - assert_in_out_err(%w(--enable all --disable-yjit -e) + [""], "", [], []) - assert_in_out_err(%w(--enable-all --disable-yjit -e) + [""], "", [], []) - assert_in_out_err(%w(--enable=all --disable-yjit -e) + [""], "", [], []) + assert_in_out_err(%w(--enable all -e) + [""], "", [], []) + assert_in_out_err(%w(--enable-all -e) + [""], "", [], []) + assert_in_out_err(%w(--enable=all -e) + [""], "", [], []) end assert_in_out_err(%w(--enable foobarbazqux -e) + [""], "", [], /unknown argument for --enable: `foobarbazqux'/) |