aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-07 15:09:58 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-07 15:09:58 +0000
commitd6eb3597a2ddbe3828198939591e8eddc67afb62 (patch)
treeb0c6a73ca4852c06addd215a7822ba94c4ff21d9 /test
parentba8cf9156f163ae0b52bde3ae3740b00a1a4aba6 (diff)
downloadruby-d6eb3597a2ddbe3828198939591e8eddc67afb62.tar.gz
mjit_worker.c: clean up all unnecessary files on mswin
test_jit.rb: passed all MJIT tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_jit.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index 701e3d109a..ac5ea211f4 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -552,7 +552,6 @@ class TestJIT < Test::Unit::TestCase
end
def test_unload_units
- skip_on_mswin
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)
@@ -717,7 +716,6 @@ class TestJIT < Test::Unit::TestCase
end
def test_clean_so
- skip_on_mswin
Dir.mktmpdir("jit_test_clean_so_") do |dir|
code = "x = 0; 10.times {|i|x+=i}"
eval_with_jit({"TMPDIR"=>dir}, code)
@@ -797,13 +795,6 @@ class TestJIT < Test::Unit::TestCase
private
- # Some tests are stil failing on VC++.
- def skip_on_mswin
- if RUBY_PLATFORM.match?(/mswin/)
- skip 'This test does not succeed on mswin yet.'
- end
- end
-
def skip_on_mingw
if RUBY_PLATFORM.match?(/mingw/)
skip 'This test does not succeed on mingw yet.'