mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/minitest/test_mini_test.rb: fixed that r19958 made
test-all fail when the ruby was built at $(srcdir). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0a88cb504b
commit
a1cef99541
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Oct 27 15:32:08 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||||
|
|
||||||
|
* test/minitest/test_mini_test.rb: fixed that r19958 made
|
||||||
|
test-all fail when the ruby was built at $(srcdir).
|
||||||
|
|
||||||
Mon Oct 27 12:04:58 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
Mon Oct 27 12:04:58 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||||
|
|
||||||
* test/ruby/envutil.rb: reverted the changeset 19948 because it
|
* test/ruby/envutil.rb: reverted the changeset 19948 because it
|
||||||
|
|
|
@ -28,8 +28,10 @@ class TestMiniTest < MiniTest::Unit::TestCase
|
||||||
Object.send :remove_const, :ATestCase if defined? ATestCase
|
Object.send :remove_const, :ATestCase if defined? ATestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
pwd = Pathname.new(Dir.pwd)
|
pwd = Pathname.new(File.expand_path Dir.pwd)
|
||||||
MINITEST_BASE_DIR = Pathname.new(File.expand_path(MiniTest::MINI_DIR)).relative_path_from(pwd)
|
basedir = Pathname.new(File.expand_path(MiniTest::MINI_DIR)) + 'mini'
|
||||||
|
basedir = basedir.relative_path_from(pwd).to_s
|
||||||
|
MINITEST_BASE_DIR = basedir[/\A\./] ? basedir : "./#{basedir}"
|
||||||
BT_MIDDLE = ["#{MINITEST_BASE_DIR}/test.rb:165:in `run_test_suites'",
|
BT_MIDDLE = ["#{MINITEST_BASE_DIR}/test.rb:165:in `run_test_suites'",
|
||||||
"#{MINITEST_BASE_DIR}/test.rb:161:in `each'",
|
"#{MINITEST_BASE_DIR}/test.rb:161:in `each'",
|
||||||
"#{MINITEST_BASE_DIR}/test.rb:161:in `run_test_suites'",
|
"#{MINITEST_BASE_DIR}/test.rb:161:in `run_test_suites'",
|
||||||
|
|
Loading…
Reference in a new issue