summaryrefslogtreecommitdiff
path: root/test/ruby/test_rubyvm_mjit.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-20 08:06:50 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-20 08:06:50 +0000
commit3845a506046502f2f5e704cab87b66c6988f7229 (patch)
tree328a9af079192e33758f63b83c10aa3359e463b4 /test/ruby/test_rubyvm_mjit.rb
parent0b19e15a1239bff9ae854f522f954206ec910cf8 (diff)
skip tests if --disable-mjit-support.
* test/ruby/test_rubyoptions.rb: skip MJIT related test if an interpreter is built with --disable-mjit-support. * test/ruby/test_rubyvm_mjit.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65218 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_rubyvm_mjit.rb')
-rw-r--r--test/ruby/test_rubyvm_mjit.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ruby/test_rubyvm_mjit.rb b/test/ruby/test_rubyvm_mjit.rb
index b41ad78510..12772320f5 100644
--- a/test/ruby/test_rubyvm_mjit.rb
+++ b/test/ruby/test_rubyvm_mjit.rb
@@ -2,6 +2,8 @@
require 'test/unit'
require_relative '../lib/jit_support'
+return if RbConfig::CONFIG["MJIT_SUPPORT"] == 'no'
+
class TestRubyVMMJIT < Test::Unit::TestCase
include JITSupport