mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Now YJIT can be enabled on mswin64
This commit is contained in:
parent
4e007d705c
commit
a74a2f456a
1 changed files with 2 additions and 2 deletions
|
@ -233,7 +233,7 @@ class TestRubyOptions < Test::Unit::TestCase
|
|||
%w(--version --jit --disable=jit),
|
||||
%w(--version --enable=jit --disable=jit),
|
||||
%w(--version --enable-jit --disable-jit),
|
||||
] unless RUBY_PLATFORM.start_with?('x86_64-') && RUBY_PLATFORM !~ /mswin|mingw|msys/),
|
||||
] unless /^x86_64|mswin64/ =~ RUBY_PLATFORM),
|
||||
].each do |args|
|
||||
assert_in_out_err([env] + args) do |r, e|
|
||||
assert_match(VERSION_PATTERN, r[0])
|
||||
|
@ -251,7 +251,7 @@ class TestRubyOptions < Test::Unit::TestCase
|
|||
%w(--version --jit),
|
||||
%w(--version --enable=jit),
|
||||
%w(--version --enable-jit),
|
||||
] unless RUBY_PLATFORM.start_with?('x86_64-') && RUBY_PLATFORM !~ /mswin|mingw|msys/),
|
||||
] unless /^x86_64|mswin64/ =~ RUBY_PLATFORM),
|
||||
].each do |args|
|
||||
assert_in_out_err([env] + args) do |r, e|
|
||||
assert_match(VERSION_PATTERN_WITH_JIT, r[0])
|
||||
|
|
Loading…
Add table
Reference in a new issue