From 7f6d21731c627b310b6853d80fdcc09bdcb424c9 Mon Sep 17 00:00:00 2001 From: sorah Date: Fri, 2 Nov 2012 08:56:10 +0000 Subject: * lib/test/unit.rb (_run_parallel): Delete status line before showing results. Patch by Hiroshi Shirosaki. [Bug #6897] [ruby-core:47250] * lib/test/unit.rb (_run_parallel): Fix strange result when disabled retrying. Patch by Hiroshi Shirosaki. [Bug #6897] [ruby-core:47250] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37425 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/test/unit.rb | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'lib/test/unit.rb') diff --git a/lib/test/unit.rb b/lib/test/unit.rb index c29facca71..d1d40524a8 100644 --- a/lib/test/unit.rb +++ b/lib/test/unit.rb @@ -616,15 +616,20 @@ module Test _run_suites(suites, type) end end + unless @options[:retry] + del_status_line or puts + end unless rep.empty? rep.each do |r| r[:report].each do |f| - report.push(puke(*f)) if f + puke(*f) if f end end - @errors += rep.map{|x| x[:result][0] }.inject(:+) - @failures += rep.map{|x| x[:result][1] }.inject(:+) - @skips += rep.map{|x| x[:result][2] }.inject(:+) + if @options[:retry] + @errors += rep.map{|x| x[:result][0] }.inject(:+) + @failures += rep.map{|x| x[:result][1] }.inject(:+) + @skips += rep.map{|x| x[:result][2] }.inject(:+) + end end unless @warnings.empty? warn "" -- cgit v1.2.3