summaryrefslogtreecommitdiff
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_process.rb')
-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