From 76697cf35264f326eafba266e423c25f4c704061 Mon Sep 17 00:00:00 2001 From: yugui Date: Sun, 4 Jan 2009 06:15:22 +0000 Subject: merges r21273 from trunk into ruby_1_9_1. * test/ruby/test_process.rb (test_wait_and_sigchild): remove debug output. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@21303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/ruby/test_process.rb') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 072e7742d..9a8f45e67 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1013,7 +1013,7 @@ class TestProcess < Test::Unit::TestCase def test_wait_and_sigchild signal_received = [] - Signal.trap(:CHLD) { signal_received << true; puts "child died" } + Signal.trap(:CHLD) { signal_received << true } pid = fork { sleep 1; exit } Thread.start { raise } Process.wait pid -- cgit