ruby-changes:59691
From: Nobuyoshi <ko1@a...>
Date: Mon, 13 Jan 2020 12:27:50 +0900 (JST)
Subject: [ruby-changes:59691] f43940633d (master): test-bundled-gems.rb: Use real paths for symlinks
https://git.ruby-lang.org/ruby.git/commit/?id=f43940633d From f43940633d176464c395ba1342195bf3b2090fbc Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Mon, 13 Jan 2020 12:27:24 +0900 Subject: test-bundled-gems.rb: Use real paths for symlinks diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb index ded4bc8..e97e6c1 100644 --- a/tool/test-bundled-gems.rb +++ b/tool/test-bundled-gems.rb @@ -3,15 +3,15 @@ require 'rbconfig' https://github.com/ruby/ruby/blob/trunk/tool/test-bundled-gems.rb#L3 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 -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/