diff --git a/ChangeLog b/ChangeLog index 25b127f82d..a7bffa66a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Tue Mar 22 10:11:01 2016 Nobuyoshi Nakada + + * 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 * time.c (MUL_OVERFLOW_FIXWV_P): defined for FIXWV. diff --git a/test/lib/test/unit.rb b/test/lib/test/unit.rb index fc210d983c..72d4ba60a7 100644 --- a/test/lib/test/unit.rb +++ b/test/lib/test/unit.rb @@ -650,7 +650,7 @@ module Test def succeed; del_status_line; end def failed(s) - return if s and @options[:verbose] + return if s and @options[:job_status] != :replace sep = "\n" @report_count ||= 0 report.each do |msg|