summaryrefslogtreecommitdiff
path: root/test/ruby/test_jit_debug.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-05-03 00:33:56 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-05-03 00:34:03 -0700
commite0c023d1c8a22533b6cd3a5fa4bbcd4145f635b5 (patch)
tree14517fabf097b67e9dd2aa019e4a183f84e20143 /test/ruby/test_jit_debug.rb
parente49ecaed57181c10bf01e1f84b9eead65a759386 (diff)
Skip only .dSYM cleanup on macOS
Fix https://github.com/ruby/ruby/runs/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.
Diffstat (limited to 'test/ruby/test_jit_debug.rb')
-rw-r--r--test/ruby/test_jit_debug.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/ruby/test_jit_debug.rb b/test/ruby/test_jit_debug.rb
index 0d357ee7e0..179512fec6 100644
--- a/test/ruby/test_jit_debug.rb
+++ b/test/ruby/test_jit_debug.rb
@@ -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