diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 8b7d8f0c57..a9052b4706 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1426,7 +1426,6 @@ class TestProcess < Test::Unit::TestCase end def test_wait_without_arg - skip "[Bug #14867]" if RubyVM::MJIT.enabled? with_tmpchdir do write_file("foo", "sleep 0.1") pid = spawn(RUBY, "foo") @@ -1435,7 +1434,6 @@ class TestProcess < Test::Unit::TestCase end def test_wait2 - skip "[Bug #14867]" if RubyVM::MJIT.enabled? with_tmpchdir do write_file("foo", "sleep 0.1") pid = spawn(RUBY, "foo") @@ -1444,7 +1442,6 @@ class TestProcess < Test::Unit::TestCase end def test_waitall - skip "[Bug #14867]" if RubyVM::MJIT.enabled? with_tmpchdir do write_file("foo", "sleep 0.1") ps = (0...3).map { spawn(RUBY, "foo") }.sort