From 73bf186c2216ee13151c5d6e30477ddef19127e1 Mon Sep 17 00:00:00 2001 From: mame Date: Fri, 2 Jan 2009 13:18:57 +0000 Subject: * test/ruby/test_process.rb (test_wait_and_sigchild): remove debug output. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21273 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/ruby') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 1e7b63a47..cc9830929 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1047,7 +1047,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