diff options
author | Takashi Kokubun <[email protected]> | 2023-03-05 13:09:54 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-03-05 22:11:20 -0800 |
commit | 40ffc1e0f424156ef6eb7687cd620994007895f2 (patch) | |
tree | 55d19e6b14d27b71455f8b21eca0ba1803d91630 /test/ruby/test_mjit_debug.rb | |
parent | 3d19db4f8b2b1f768f9737c72c77341ab2fc3330 (diff) |
Drop existing MJIT tests
Diffstat (limited to 'test/ruby/test_mjit_debug.rb')
-rw-r--r-- | test/ruby/test_mjit_debug.rb | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/ruby/test_mjit_debug.rb b/test/ruby/test_mjit_debug.rb deleted file mode 100644 index 0b50acc68d..0000000000 --- a/test/ruby/test_mjit_debug.rb +++ /dev/null @@ -1,17 +0,0 @@ -require_relative 'test_mjit' - -return unless defined?(TestMJIT) -return if ENV.key?('APPVEYOR') -return if ENV.key?('RUBYCI_NICKNAME') -return if ENV['RUBY_DEBUG']&.include?('ci') # ci.rvm.jp -return if /mswin/ =~ RUBY_PLATFORM - -class TestMJITDebug < TestMJIT - @@test_suites.delete TestMJIT if self.respond_to? :on_parallel_worker? - - def setup - super - # let `#eval_with_jit` use --mjit-debug - @mjit_debug = true - end -end |