ruby-changes:10102
From: ryan <ko1@a...>
Date: Sun, 18 Jan 2009 05:17:48 +0900 (JST)
Subject: [ruby-changes:10102] Ruby:r21645 (trunk): Fixed LocalJumpError
ryan 2009-01-18 05:17:37 +0900 (Sun, 18 Jan 2009) New Revision: 21645 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21645 Log: Fixed LocalJumpError Modified files: trunk/lib/minitest/unit.rb Index: lib/minitest/unit.rb =================================================================== --- lib/minitest/unit.rb (revision 21644) +++ lib/minitest/unit.rb (revision 21645) @@ -325,7 +325,7 @@ def self.autorun at_exit { - return if $! # don't run if there was an exception + next if $! # don't run if there was an exception exit_code = MiniTest::Unit.new.run(ARGV) exit false if exit_code && exit_code != 0 } unless @@installed_at_exit -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/