зеркало из https://github.com/github/ruby.git
test/unit.rb: defer failures in non-replace mode
* test/lib/test/unit.rb (Test::Unit::StatusLine#failed): print failed messages only if replacing mode, otherwise defer them until the end, to get rid of interleaving failures with progress messages. refix r54195. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54223 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
520650798c
Коммит
66225416bd
|
@ -1,3 +1,10 @@
|
||||||
|
Tue Mar 22 10:11:01 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/lib/test/unit.rb (Test::Unit::StatusLine#failed): print
|
||||||
|
failed messages only if replacing mode, otherwise defer them
|
||||||
|
until the end, to get rid of interleaving failures with progress
|
||||||
|
messages. refix r54195.
|
||||||
|
|
||||||
Tue Mar 22 03:45:03 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
Tue Mar 22 03:45:03 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* time.c (MUL_OVERFLOW_FIXWV_P): defined for FIXWV.
|
* time.c (MUL_OVERFLOW_FIXWV_P): defined for FIXWV.
|
||||||
|
|
|
@ -650,7 +650,7 @@ module Test
|
||||||
def succeed; del_status_line; end
|
def succeed; del_status_line; end
|
||||||
|
|
||||||
def failed(s)
|
def failed(s)
|
||||||
return if s and @options[:verbose]
|
return if s and @options[:job_status] != :replace
|
||||||
sep = "\n"
|
sep = "\n"
|
||||||
@report_count ||= 0
|
@report_count ||= 0
|
||||||
report.each do |msg|
|
report.each do |msg|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче