blob: bac6e38c72242660f9d8f8b25cd6f6b52d123575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require_relative 'test_jit'
return unless defined?(TestJIT)
return if ENV.key?('APPVEYOR')
return if ENV.key?('RUBYCI_NICKNAME')
return if ENV['RUBY_DEBUG']&.include?('ci') # ci.rvm.jp
class TestJITDebug < TestJIT
def setup
# let `#eval_with_jit` use --jit-debug
@jit_debug = true
end
end
|