mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/test/unit.rb (Test::Unit::Runner#failed): need to delete the
status line if the status is skipped and -q is specified. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
665b06ec5b
commit
e272790d11
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Wed Aug 15 18:05:37 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/test/unit.rb (Test::Unit::Runner#failed): need to delete the
|
||||||
|
status line if the status is skipped and -q is specified.
|
||||||
|
|
||||||
Wed Aug 15 16:26:52 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Wed Aug 15 16:26:52 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* sprintf.c (ruby__sfvextra): the result should be infected by the
|
* sprintf.c (ruby__sfvextra): the result should be infected by the
|
||||||
|
|
|
@ -725,7 +725,10 @@ module Test
|
||||||
@report_count ||= 0
|
@report_count ||= 0
|
||||||
report.each do |msg|
|
report.each do |msg|
|
||||||
if msg.start_with? "Skipped:"
|
if msg.start_with? "Skipped:"
|
||||||
next if @options[:hide_skip]
|
if @options[:hide_skip]
|
||||||
|
del_status_line
|
||||||
|
next
|
||||||
|
end
|
||||||
color = @skipped_color
|
color = @skipped_color
|
||||||
else
|
else
|
||||||
color = @failed_color
|
color = @failed_color
|
||||||
|
|
Loading…
Add table
Reference in a new issue