зеркало из https://github.com/github/ruby.git
fix up r57167
* 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:
Родитель
c47e21315c
Коммит
6657567eba
|
@ -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
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче