* test/ruby/test_process.rb (test_setsid): added a few wait for

preventing that Process.getsid(io.pid) makes Errno::ESRCH.
  (refix r37844)

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kosaki 2012-11-26 01:57:41 +00:00
parent 251dbc1241
commit 769781a099
2 changed files with 9 additions and 8 deletions

View file

@ -1566,13 +1566,15 @@ class TestProcess < Test::Unit::TestCase
Marshal.dump(Process.getsid, STDOUT)
newsid = Process.setsid
Marshal.dump(newsid, STDOUT)
Marshal.dump(Process.getsid($$), STDOUT)
STDOUT.flush
sleep 3
EOS
# test Process.getsid() w/o arg
assert_equal(Marshal.load(io), Process.getsid)
newsid = Marshal.load(io)
getsid = Marshal.load(io)
assert_equal(newsid, getsid)
# test Process.setsid return value and Process::getsid(pid)
assert_equal(Marshal.load(io), Process.getsid(io.pid))
Process.kill(:KILL, io.pid)
end
end
end