From 3405411cc427291e13e2cf146b730ec1b3669dce Mon Sep 17 00:00:00 2001 From: k0kubun Date: Tue, 20 Nov 2018 00:04:19 +0000 Subject: process.c: do not try to pause MJIT while child handler is disabled. trying to fix [Bug #15320] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65817 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 2 -- 1 file changed, 2 deletions(-) (limited to 'test') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 88d2a9ae5b..4e4a65778d 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1724,7 +1724,6 @@ class TestProcess < Test::Unit::TestCase if Process.respond_to?(:daemon) def test_daemon_default - skip 'IO.popen deadlocks with MJIT [Bug #15320]' if RubyVM::MJIT.enabled? data = IO.popen("-", "r+") do |f| break f.read if f Process.daemon @@ -1774,7 +1773,6 @@ class TestProcess < Test::Unit::TestCase if File.directory?("/proc/self/task") && /netbsd[a-z]*[1-6]/ !~ RUBY_PLATFORM def test_daemon_no_threads - skip 'IO.popen deadlocks with MJIT [Bug #15320]' if RubyVM::MJIT.enabled? pid, data = IO.popen("-", "r+") do |f| break f.pid, f.readlines if f Process.daemon(true, true) -- cgit v1.2.3