summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-02 13:18:57 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-02 13:18:57 +0000
commitd8d5cda2d48fd076d5eeba0e1cc4dc8d581ff4c9 (patch)
tree047b68aa6aa5eae8325ae351ef12e2df3b12914c /test
parente4b7c0e8a36c3788f180202f0511b3f70d566c6f (diff)
* test/ruby/test_process.rb (test_wait_and_sigchild): remove debug
output. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21273 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 1e7b63a47a..cc98309293 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