summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-19 14:03:37 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-19 14:03:37 +0000
commit2baf760cc2a0b878752e18602ca6d8420600c2fb (patch)
tree21866c04ef305b13c72432cb93e39b0c048b81cc /test/lib
parent4765da9c589d7d4f879d93add49c87d74064b364 (diff)
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
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/jit_support.rb30
1 files changed, 0 insertions, 30 deletions
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, '')