diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-02 13:18:57 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-02 13:18:57 +0000 |
commit | d8d5cda2d48fd076d5eeba0e1cc4dc8d581ff4c9 (patch) | |
tree | 047b68aa6aa5eae8325ae351ef12e2df3b12914c | |
parent | e4b7c0e8a36c3788f180202f0511b3f70d566c6f (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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | test/ruby/test_process.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Fri Jan 2 22:20:46 2009 Yusuke Endoh <mame@tsg.ne.jp> + + * test/ruby/test_process.rb (test_wait_and_sigchild): remove debug + output. + Fri Jan 2 17:45:19 2009 Tanaka Akira <akr@fsij.org> * ext/socket/mkconstants.rb: rename family_to_str to intern_family. 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 |