1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test-bundled-gems.rb: fixed for out-of-place build

This commit is contained in:
Nobuyoshi Nakada 2019-10-28 19:14:38 +09:00
parent 07b5fec008
commit 48f982aba7
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -3,12 +3,13 @@ require 'rbconfig'
allowed_failures = ENV['TEST_BUNDLED_GEMS_ALLOW_FAILURES'] || ''
allowed_failures = allowed_failures.split(',').reject(&:empty?)
gem_dir = File.expand_path('../../gems', __FILE__)
exit_code = 0
File.foreach('gems/bundled_gems') do |line|
File.foreach("#{gem_dir}/bundled_gems") do |line|
gem = line.split.first
puts "\nTesting the #{gem} gem"
gem_src_dir = File.expand_path("../../gems/src/#{gem}", __FILE__ )
gem_src_dir = File.expand_path("#{gem_dir}/src/#{gem}", __FILE__)
test_command = "#{ARGV.join(' ')} -C #{gem_src_dir} -Ilib ../../../.bundle/bin/rake"
puts test_command
system test_command