summaryrefslogtreecommitdiff
path: root/test/ruby/test_jit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_jit.rb')
-rw-r--r--test/ruby/test_jit.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index 7fe58ea336..d90bc67eae 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -764,8 +764,8 @@ class TestJIT < Test::Unit::TestCase
end
def test_clean_so
- if appveyor_mswin?
- skip 'Removing so file is failing on AppVeyor mswin due to Permission Denied.'
+ if RUBY_PLATFORM.match?(/mswin/)
+ skip 'Removing so file is randomly failing on AppVeyor/RubyCI mswin due to Permission Denied.'
end
Dir.mktmpdir("jit_test_clean_so_") do |dir|
code = "x = 0; 10.times {|i|x+=i}"