summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-01-13 12:27:24 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-01-13 12:27:24 +0900
commitf43940633d176464c395ba1342195bf3b2090fbc (patch)
tree601098159c47f2622cea26cbd8b6dcd88c18ec45 /tool
parentc9b1969fa30c7e86e8d134d2a9bf412796dacdad (diff)
test-bundled-gems.rb: Use real paths for symlinks
Diffstat (limited to 'tool')
-rw-r--r--tool/test-bundled-gems.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb
index ded4bc852a..e97e6c19a5 100644
--- a/tool/test-bundled-gems.rb
+++ b/tool/test-bundled-gems.rb
@@ -3,15 +3,15 @@ require 'rbconfig'
allowed_failures = ENV['TEST_BUNDLED_GEMS_ALLOW_FAILURES'] || ''
allowed_failures = allowed_failures.split(',').reject(&:empty?)
-gem_dir = File.expand_path('../../gems', __FILE__)
+rake = File.realpath("../../.bundle/bin/rake", __FILE__)
+gem_dir = File.realpath('../../gems', __FILE__)
exit_code = 0
ruby = ENV['RUBY'] || RbConfig.ruby
File.foreach("#{gem_dir}/bundled_gems") do |line|
gem = line.split.first
puts "\nTesting the #{gem} gem"
- gem_src_dir = File.expand_path("#{gem_dir}/src/#{gem}", __FILE__)
- test_command = "#{ruby} -C #{gem_src_dir} -Ilib ../../../.bundle/bin/rake"
+ test_command = "#{ruby} -C #{gem_dir}/src/#{gem} -Ilib #{rake}"
puts test_command
system test_command