summaryrefslogtreecommitdiff
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-30 08:47:22 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-30 08:47:22 +0000
commit092ec0146dbf4489e4754a6287ddc81feb055c83 (patch)
tree09eb09cb3c6378690c6a36247b26369de9894015 /test/ruby/test_process.rb
parent58c070aa9bcfb391e86f271c6e7dee4757c73670 (diff)
report the reason of process termination.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14048 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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 93eb871edc..1e9ad4d457 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -36,6 +36,6 @@ class TestProcess < Test::Unit::TestCase
exit 1
}
Process.wait pid
- assert_equal(0, $?.to_i)
+ assert_equal(0, $?.to_i, "#{$?}")
end
end