summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2020-04-18 14:59:22 +0900
committerYusuke Endoh <mame@ruby-lang.org>2020-04-18 14:59:22 +0900
commit8d6aa06620b316904fd10d0cab1b85e07f2fbf67 (patch)
tree86fbb5cc3479e45d1b859f117f818edfb272a88f /test/ruby
parent75f6d7064413851422de1782a6fdefcce6876aec (diff)
test/ruby/test_jit_debug.rb: Skip unsupported platforms
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_jit_debug.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ruby/test_jit_debug.rb b/test/ruby/test_jit_debug.rb
index 3efc72d6fd..362398c1d6 100644
--- a/test/ruby/test_jit_debug.rb
+++ b/test/ruby/test_jit_debug.rb
@@ -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