mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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:
parent
c47e21315c
commit
6657567eba
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue