1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test/ruby/test_jit_debug.rb: Skip unsupported platforms

This commit is contained in:
Yusuke Endoh 2020-04-18 14:59:22 +09:00
parent 75f6d70644
commit 8d6aa06620

View file

@ -8,6 +8,9 @@ return if /mswin/ =~ RUBY_PLATFORM
class TestJITDebug < TestJIT
def setup
unless JITSupport.supported?
skip 'JIT seems not supported on this platform'
end
# let `#eval_with_jit` use --jit-debug
@jit_debug = true
end