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 | c9ef8cd3be733ebc321d8d47531e77c615df8a65 (patch) | |
| tree | 09eb09cb3c6378690c6a36247b26369de9894015 | |
| parent | f611b60f27f845aa45346691497a71fe10e30824 (diff) | |
| download | ruby-c9ef8cd3be733ebc321d8d47531e77c615df8a65.tar.gz ruby-c9ef8cd3be733ebc321d8d47531e77c615df8a65.tar.xz ruby-c9ef8cd3be733ebc321d8d47531e77c615df8a65.zip | |
report the reason of process termination.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14048 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -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 93eb871ed..1e9ad4d45 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 |
