From e0bc5e49ffc1a013705e1e287967139425912974 Mon Sep 17 00:00:00 2001 From: k0kubun Date: Mon, 8 Oct 2018 01:08:37 +0000 Subject: test_jit.rb: skip to test tempdir emptiness on AppVeyor mswin. It's somehow failing and not reproductive on my environment. We're suspecting maybe somebody is still holding module handle, even while FreeLibrary is finished successfully. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_jit.rb | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb index ac5ea211f4..0bfedd3017 100644 --- a/test/ruby/test_jit.rb +++ b/test/ruby/test_jit.rb @@ -585,8 +585,13 @@ class TestJIT < Test::Unit::TestCase assert_equal(2, compactions.size, debug_info) end - # verify .o files are deleted on unload_units - assert_send([Dir, :empty?, dir], debug_info) + if appveyor_mswin? + # "Permission Denied" error is preventing to remove so file on AppVeyor. + warn 'skipped to test directory emptiness in TestJIT#test_unload_units on AppVeyor mswin' + else + # verify .o files are deleted on unload_units + assert_send([Dir, :empty?, dir], debug_info) + end end end @@ -716,6 +721,9 @@ 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.' + end Dir.mktmpdir("jit_test_clean_so_") do |dir| code = "x = 0; 10.times {|i|x+=i}" eval_with_jit({"TMPDIR"=>dir}, code) @@ -795,6 +803,10 @@ class TestJIT < Test::Unit::TestCase private + def appveyor_mswin? + ENV['APPVEYOR'] == 'True' && RUBY_PLATFORM.match?(/mswin/) + end + def skip_on_mingw if RUBY_PLATFORM.match?(/mingw/) skip 'This test does not succeed on mingw yet.' -- cgit v1.2.3