From e272790d1103d12afc98feac8e441fb66147836b Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 15 Aug 2012 09:08:09 +0000 Subject: * 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 --- lib/test/unit.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/test/unit.rb b/lib/test/unit.rb index e8afbbcaa2..e96ec558eb 100644 --- a/lib/test/unit.rb +++ b/lib/test/unit.rb @@ -725,7 +725,10 @@ module Test @report_count ||= 0 report.each do |msg| if msg.start_with? "Skipped:" - next if @options[:hide_skip] + if @options[:hide_skip] + del_status_line + next + end color = @skipped_color else color = @failed_color -- cgit v1.2.3