From 2baf760cc2a0b878752e18602ca6d8420600c2fb Mon Sep 17 00:00:00 2001 From: k0kubun Date: Fri, 19 Oct 2018 14:03:37 +0000 Subject: test/lib/jit_support.rb: fire test_jit everywhere That was a workaround to make rubyci green for a short term after the MJIT merge. As we've done many portability fixes for MJIT, let's try running test_jit on all rubyci platforms. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65175 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/lib/jit_support.rb | 30 ------------------------------ test/ruby/test_jit.rb | 4 ---- 2 files changed, 34 deletions(-) (limited to 'test') diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb index 05a71dbf72..eed82d32ca 100644 --- a/test/lib/jit_support.rb +++ b/test/lib/jit_support.rb @@ -6,27 +6,6 @@ module JITSupport 'clang', ] - def self.check_support - # Experimental. If you want to ensure JIT is working with this test, please set this for now. - if ENV.key?('RUBY_FORCE_TEST_JIT') - return true - end - - # Very pessimistic check. With this check, we can't ensure JIT is working. - begin - _, err = JITSupport.eval_with_jit_without_retry('proc {}.call', verbose: 1, min_calls: 1, timeout: 10) - rescue Timeout::Error - $stderr.puts "TestJIT: #jit_supported? check timed out" - false - else - err.match?(JIT_SUCCESS_PREFIX).tap do |success| - unless success - $stderr.puts "TestJIT.check_support stderr:\n```\n#{err}\n```\n" - end - end - end - end - module_function # Run Ruby script with --jit-wait (Synchronous JIT compilation). # Returns [stdout, stderr] @@ -56,15 +35,6 @@ module JITSupport ) end - def supported? - return @supported if defined?(@supported) - @supported = JITSupport.check_support.tap do |supported| - unless supported - warn "JIT tests are skipped since JIT seems not working. Set RUBY_FORCE_TEST_JIT=1 to let it fail.", uplevel: 1 - end - end - end - def remove_mjit_logs(stderr) if RubyVM::MJIT.enabled? stderr.gsub(/^MJIT warning: Skipped to compile unsupported instruction: \w+\n/m, '') diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb index 3b18373212..cabae57ea9 100644 --- a/test/ruby/test_jit.rb +++ b/test/ruby/test_jit.rb @@ -32,10 +32,6 @@ class TestJIT < Test::Unit::TestCase end def setup - unless JITSupport.supported? - skip 'JIT seems not supported on this platform' - end - # ruby -w -Itest/lib test/ruby/test_jit.rb if $VERBOSE && !defined?(@@at_exit_hooked) at_exit do -- cgit v1.2.3