summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-04-18 00:48:32 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-04-18 00:48:33 -0700
commitdc8ab86a2b30189be0e4f31012c949318e397618 (patch)
tree26245b8420f82f984a6b497302ec26c906259c89
parent9948addda67f4b7a6e3575f1eba9025f998811d2 (diff)
Super TestJIT#setup to skip unsupported envs
Slightly simplifying 8d6aa06620b316904fd10d0cab1b85e07f2fbf67
-rw-r--r--test/ruby/test_jit_debug.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/ruby/test_jit_debug.rb b/test/ruby/test_jit_debug.rb
index 362398c1d6..179512fec6 100644
--- a/test/ruby/test_jit_debug.rb
+++ b/test/ruby/test_jit_debug.rb
@@ -8,9 +8,7 @@ return if /mswin/ =~ RUBY_PLATFORM
class TestJITDebug < TestJIT
def setup
- unless JITSupport.supported?
- skip 'JIT seems not supported on this platform'
- end
+ super
# let `#eval_with_jit` use --jit-debug
@jit_debug = true
end