mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Skip only .dSYM cleanup on macOS
Fix 636020145
without skipping too
many tests.
It seems that .c -> .o with debug flags and .o -> .so without debug
flags did not generate .dSYM but now .c -> .so with debug flags seems to
generate a .dSYM directory. As --jit-debug should not be used by normal
users, let me skip implementing the removal for now.
This commit is contained in:
parent
e49ecaed57
commit
e0c023d1c8
2 changed files with 10 additions and 5 deletions
|
@ -5,7 +5,6 @@ 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
|
||||
return if /darwin/ =~ RUBY_PLATFORM # TODO: remove this after investigation
|
||||
|
||||
class TestJITDebug < TestJIT
|
||||
def setup
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue