[前][次][番号順一覧][スレッド一覧]

ruby-changes:2557

From: ko1@a...
Date: 30 Nov 2007 17:47:38 +0900
Subject: [ruby-changes:2557] akr - Ruby:r14048 (trunk): report the reason of process termination.

akr	2007-11-30 17:47:22 +0900 (Fri, 30 Nov 2007)

  New Revision: 14048

  Modified files:
    trunk/test/ruby/test_process.rb

  Log:
    report the reason of process termination.


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/test/ruby/test_process.rb?r1=14048&r2=14047

Index: test/ruby/test_process.rb
===================================================================
--- test/ruby/test_process.rb	(revision 14047)
+++ test/ruby/test_process.rb	(revision 14048)
@@ -36,6 +36,6 @@
       exit 1
     }
     Process.wait pid
-    assert_equal(0, $?.to_i)
+    assert_equal(0, $?.to_i, "#{$?}")
   end
 end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml

[前][次][番号順一覧][スレッド一覧]