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: show failed gems at last

This commit is contained in:
Nobuyoshi Nakada 2020-12-03 21:31:44 +09:00
parent d3c685f0b5
commit 2a99fea89e
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -8,6 +8,7 @@ rake = File.realpath("../../.bundle/bin/rake", __FILE__)
gem_dir = File.realpath('../../gems', __FILE__)
exit_code = 0
ruby = ENV['RUBY'] || RbConfig.ruby
failed = []
File.foreach("#{gem_dir}/bundled_gems") do |line|
next if /^\s*(?:#|$)/ =~ line
gem = line.split.first
@ -44,9 +45,11 @@ File.foreach("#{gem_dir}/bundled_gems") do |line|
if allowed_failures.include?(gem)
puts "Ignoring test failures for #{gem} due to \$TEST_BUNDLED_GEMS_ALLOW_FAILURES"
else
failed << gem
exit_code = $?.exitstatus
end
end
end
puts "Failed gems: #{failed.join(', ')}" unless failed.empty?
exit exit_code