mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
11 lines
245 B
Ruby
11 lines
245 B
Ruby
require_relative 'test_jit'
|
|
|
|
return unless defined?(TestJIT)
|
|
return if RbConfig::CONFIG['CPPFLAGS'].include?('-DVM_CHECK_MODE')
|
|
|
|
class TestJITDebug < TestJIT
|
|
def setup
|
|
# let `#eval_with_jit` use --jit-debug
|
|
@jit_debug = true
|
|
end
|
|
end
|