1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/test/unit/parallel.rb (Test::Unit::Worker.run): wrap LoadError

because it's Gem::LoadError sometimes.  see [Bug #6882]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2012-11-30 12:09:19 +00:00
parent bb4410a289
commit d07346a102
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Fri Nov 30 21:07:56 2012 NAKAMURA Usaku <usa@ruby-lang.org>
* lib/test/unit/parallel.rb (Test::Unit::Worker.run): wrap LoadError
because it's Gem::LoadError sometimes. see [Bug #6882]
Fri Nov 30 20:47:44 2012 Koichi Sasada <ko1@atdot.net>
* thread.c: TracePoint#self returns invoking/exitting thread object

View file

@ -113,7 +113,7 @@ module Test
begin
require $1
rescue LoadError
_report "after", Marshal.dump([$1, $!])
_report "after", Marshal.dump([$1, ProxyError.new($!)])
_report "ready"
next
end