diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-11-30 08:47:22 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-11-30 08:47:22 +0000 |
commit | 092ec0146dbf4489e4754a6287ddc81feb055c83 (patch) | |
tree | 09eb09cb3c6378690c6a36247b26369de9894015 /test | |
parent | 58c070aa9bcfb391e86f271c6e7dee4757c73670 (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')
-rw-r--r-- | test/ruby/test_process.rb | 2 |
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 |