* test/lib/minitest/unit.rb (MiniTest::Unit#_run_anything): stop
  if any errors or failures.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58661 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-05-10 23:52:14 +00:00
Родитель c47e21315c
Коммит 6657567eba
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -900,7 +900,8 @@ module MiniTest
puts "Finished%s %ss in %.6fs, %.4f tests/s, %.4f assertions/s.\n" %
[(@repeat_count ? "(#{count}/#{@repeat_count}) " : ""), type,
t, @test_count.fdiv(t), @assertion_count.fdiv(t)]
end while @repeat_count && count < @repeat_count && report.empty?
end while @repeat_count && count < @repeat_count &&
report.empty? && failures.zero? && errors.zero?
output.sync = old_sync if sync