summaryrefslogtreecommitdiff
path: root/tool/test-bundled-gems.rb
blob: 9035e20bb14a018ff0354ce5b56c8d318515ae6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'rbconfig'

allowed_failures = ENV['TEST_BUNDLED_GEMS_ALLOW_FAILURES'] || ''
allowed_failures = allowed_failures.split(',').reject(&:empty?)

exit_code = 0
File.foreach('gems/bundled_gems') do |line|
  gem = line.split.first
  puts "\nTesting the #{gem} gem"

  gem_src_dir = File.expand_path("../../gems/src/#{gem}", __FILE__ )
  test_command = "#{ARGV.join(' ')} -C #{gem_src_dir} -Ilib ../../../.bundle/bin/rake"
  puts test_command
  system test_command

  unless $?.success?
    puts "Tests failed with exit code #{$?.exitstatus}"
    if allowed_failures.include?(gem)
      puts "Ignoring test failures for #{gem} due to \$TEST_BUNDLED_GEMS_ALLOW_FAILURES"
    else
      exit_code = $?.exitstatus
    end
  end
end

exit exit_code