aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2019-10-15 22:47:20 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2019-10-15 22:47:20 -0700
commit4ccb49bad31b3c4a9cc7c6138cae93bd60a7bec4 (patch)
tree5125a6bf8cd10a85d5badc996f93af0354cf2a74 /test/ruby
parent759576a03f0a39f3190e79526d138adc3a3f0a62 (diff)
downloadruby-4ccb49bad31b3c4a9cc7c6138cae93bd60a7bec4.tar.gz
Enforce --jit-debug test by another way
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_jit_debug.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_jit_debug.rb b/test/ruby/test_jit_debug.rb
new file mode 100644
index 0000000000..8f4386c398
--- /dev/null
+++ b/test/ruby/test_jit_debug.rb
@@ -0,0 +1,8 @@
+require_relative 'test_jit'
+
+class TestJITDebug < TestJIT
+ def setup
+ # let `#eval_with_jit` use --jit-debug
+ @jit_debug = true
+ end
+end