1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test/ruby: reap zombies

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41415 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-06-19 07:47:12 +00:00
parent c4561c2934
commit 4835230fef
5 changed files with 19 additions and 6 deletions

View file

@ -248,12 +248,13 @@ class TestFiber < Test::Unit::TestCase
def test_fork_from_fiber
begin
Process.fork{}
pid = Process.fork{}
rescue NotImplementedError
return
else
Process.wait(pid)
end
bug5700 = '[ruby-core:41456]'
pid = nil
assert_nothing_raised(bug5700) do
Fiber.new{ pid = fork {} }.resume
end

View file

@ -922,9 +922,14 @@ class TestIO < Test::Unit::TestCase
args = ['-e', '$>.write($<.read)'] if args.empty?
ruby = EnvUtil.rubybin
f = IO.popen([ruby] + args, 'r+')
pid = f.pid
yield(f)
ensure
f.close unless !f || f.closed?
begin
Process.wait(pid)
rescue Errno::ECHILD, Errno::ESRCH
end
end
def test_try_convert

View file

@ -382,7 +382,7 @@ class TestRequire < Test::Unit::TestCase
File.open("a/tst.rb", "w") {|f| f.puts 'require_relative "lib"' }
begin
File.symlink("../a/tst.rb", "b/tst.rb")
result = IO.popen([EnvUtil.rubybin, "b/tst.rb"]).read
result = IO.popen([EnvUtil.rubybin, "b/tst.rb"], &:read)
assert_equal("a/lib.rb\n", result, "[ruby-dev:40040]")
rescue NotImplementedError
skip "File.symlink is not implemented"

View file

@ -472,6 +472,7 @@ class TestRubyOptions < Test::Unit::TestCase
end
assert_match(/hello world/, ps)
Process.kill :KILL, pid
Process.wait(pid)
end
end

View file

@ -6,7 +6,7 @@ require_relative 'envutil'
class TestSignal < Test::Unit::TestCase
def have_fork?
begin
Process.fork {}
Process.wait(Process.fork {})
return true
rescue NotImplementedError
return false
@ -52,7 +52,6 @@ class TestSignal < Test::Unit::TestCase
end
def test_exit_action
return unless have_fork? # skip this test
begin
r, w = IO.pipe
r0, w0 = IO.pipe
@ -68,12 +67,17 @@ class TestSignal < Test::Unit::TestCase
sleep 0.1
assert_nothing_raised("[ruby-dev:26128]") {
Process.kill(:USR1, pid)
term = :TERM
begin
Timeout.timeout(3) {
Process.waitpid pid
}
rescue Timeout::Error
Process.kill(:TERM, pid)
if term
Process.kill(term, pid)
term = (:KILL if term != :KILL)
retry
end
raise
end
}
@ -195,6 +199,8 @@ class TestSignal < Test::Unit::TestCase
end
w.close
assert_equal(r.read, "foo")
ensure
Process.wait(pid) if pid
end
def test_signal_requiring