aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb4
-rw-r--r--test/ruby/test_process.rb5
2 files changed, 9 insertions, 0 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 117e4c95d6..1960166393 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -2146,6 +2146,10 @@ class TestIO < Test::Unit::TestCase
end
def test_autoclose_true_closed_by_finalizer
+ # http://ci.rvm.jp/results/trunk-mjit@silicon-docker/1465760
+ # http://ci.rvm.jp/results/trunk-mjit@silicon-docker/1469765
+ skip 'this randomly fails with MJIT' if RubyVM::MJIT.enabled?
+
feature2250 = '[ruby-core:26222]'
pre = 'ft2250'
t = Tempfile.new(pre)
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 4e4a65778d..16eb3e4e76 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -343,6 +343,11 @@ class TestProcess < Test::Unit::TestCase
end
def test_execopt_env_path
+ # http://ci.rvm.jp/results/trunk-mjit@silicon-docker/1455223
+ # http://ci.rvm.jp/results/trunk-mjit@silicon-docker/1450027
+ # http://ci.rvm.jp/results/trunk-mjit@silicon-docker/1469867
+ skip 'this randomly fails with MJIT' if RubyVM::MJIT.enabled?
+
bug8004 = '[ruby-core:53103] [Bug #8004]'
Dir.mktmpdir do |d|
open("#{d}/tmp_script.cmd", "w") {|f| f.puts ": ;"; f.chmod(0755)}