From d42df4914631d7a2b96edc7ee0197f2ad47f5c8e Mon Sep 17 00:00:00 2001 From: naruse Date: Thu, 28 Jun 2012 20:11:19 +0000 Subject: [PATCH] * lib/test/unit/parallel.rb: workaround fix for rubygems. RubyGems can't find rake if the source directory is not equal to the directory which is running the test. [Bug #6604] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36247 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ lib/test/unit/parallel.rb | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index acf4910591..1659d899e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Jun 29 05:08:41 2012 NARUSE, Yui + + * lib/test/unit/parallel.rb: workaround fix for rubygems. + RubyGems can't find rake if the source directory is not equal to + the directory which is running the test. [Bug #6604] + Thu Jun 28 20:33:15 2012 Luis Lavena * test/win32ole/test_win32ole.rb (test_s_codepage_changed): diff --git a/lib/test/unit/parallel.rb b/lib/test/unit/parallel.rb index b3f2eeae05..65a8264ea2 100644 --- a/lib/test/unit/parallel.rb +++ b/lib/test/unit/parallel.rb @@ -169,6 +169,10 @@ if $0 == __FILE__ end end end + require 'rubygems' + class Gem::TestCase < MiniTest::Unit::TestCase + @@project_dir = File.expand_path('../../../..', __FILE__) + end Test::Unit::Worker.new.run(ARGV) end