From c93c8e09a5ce066e4a11993d3aaf07d4afb24c1f Mon Sep 17 00:00:00 2001 From: k0kubun Date: Sun, 29 Jul 2018 03:22:07 +0000 Subject: [PATCH] test_jit.rb: skip known test failure on MinGW for the ease of MSP-Greg's CI. I'll track this failure as Bug#14948 and fix it later. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_jit.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb index 7d360b70b8..4373ee338c 100644 --- a/test/ruby/test_jit.rb +++ b/test/ruby/test_jit.rb @@ -534,6 +534,10 @@ class TestJIT < Test::Unit::TestCase end def test_unload_units + if /mingw/ =~ RUBY_PLATFORM + skip "this is currently failing on MinGW [Bug #14948]" + end + Dir.mktmpdir("jit_test_unload_units_") do |dir| # MIN_CACHE_SIZE is 10 out, err = eval_with_jit({"TMPDIR"=>dir}, "#{<<~"begin;"}\n#{<<~'end;'}", verbose: 1, min_calls: 1, max_cache: 10)