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:
parent
07b5fec008
commit
48f982aba7
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue