mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
4d7114c959
commit
c93c8e09a5
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue