test_rubyoptions.rb: allow passing test_verbose

with -DMJIT_FORCE_ENABLE. With -DMJIT_FORCE_ENABLE, absence of --jit
doesn't mean JIT disabled.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63501 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2018-05-24 12:57:40 +00:00
Родитель 9fa4766e14
Коммит 8d988784c3
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -116,7 +116,11 @@ class TestRubyOptions < Test::Unit::TestCase
def test_verbose
assert_in_out_err(["-vve", ""]) do |r, e|
assert_match(VERSION_PATTERN, r[0])
assert_equal(NO_JIT_DESCRIPTION, r[0])
if RbConfig::CONFIG['cppflags'].match?(/(\A|\s)-DMJIT_FORCE_ENABLE\b/)
assert_equal(RUBY_DESCRIPTION, r[0])
else
assert_equal(NO_JIT_DESCRIPTION, r[0])
end
assert_equal([], e)
end