ruby-changes:60814
From: Yusuke <ko1@a...>
Date: Sat, 18 Apr 2020 15:02:21 +0900 (JST)
Subject: [ruby-changes:60814] 8d6aa06620 (master): test/ruby/test_jit_debug.rb: Skip unsupported platforms
https://git.ruby-lang.org/ruby.git/commit/?id=8d6aa06620 From 8d6aa06620b316904fd10d0cab1b85e07f2fbf67 Mon Sep 17 00:00:00 2001 From: Yusuke Endoh <mame@r...> Date: Sat, 18 Apr 2020 14:59:22 +0900 Subject: test/ruby/test_jit_debug.rb: Skip unsupported platforms diff --git a/test/ruby/test_jit_debug.rb b/test/ruby/test_jit_debug.rb index 3efc72d..362398c 100644 --- a/test/ruby/test_jit_debug.rb +++ b/test/ruby/test_jit_debug.rb @@ -8,6 +8,9 @@ return if /mswin/ =~ RUBY_PLATFORM https://github.com/ruby/ruby/blob/trunk/test/ruby/test_jit_debug.rb#L8 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 -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/