mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/rake/helper.rb (Rake::TestCase#setup): @orig_PWD shouldn't be
Dir.pwd when the build directory is different from source directory. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37669 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4b96ecc89f
commit
48aab9e032
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Nov 16 10:22:52 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* test/rake/helper.rb (Rake::TestCase#setup): @orig_PWD shouldn't be
|
||||
Dir.pwd when the build directory is different from source directory.
|
||||
|
||||
Fri Nov 16 09:41:08 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* lib/rake/version.rb: workaround fix to build. see #7366
|
||||
|
|
|
@ -31,7 +31,7 @@ class Rake::TestCase < MiniTest::Unit::TestCase
|
|||
def setup
|
||||
ARGV.clear
|
||||
|
||||
@orig_PWD = Dir.pwd
|
||||
@orig_PWD = File.expand_path('../../..', __FILE__)
|
||||
@orig_APPDATA = ENV['APPDATA']
|
||||
@orig_HOME = ENV['HOME']
|
||||
@orig_HOMEDRIVE = ENV['HOMEDRIVE']
|
||||
|
|
Loading…
Reference in a new issue