summaryrefslogtreecommitdiffstats
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
commitc9ef8cd3be733ebc321d8d47531e77c615df8a65 (patch)
tree09eb09cb3c6378690c6a36247b26369de9894015
parentf611b60f27f845aa45346691497a71fe10e30824 (diff)
downloadruby-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.rb2
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