From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31054 invoked by alias); 2 Oct 2014 17:05:26 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 31042 invoked by uid 89); 2 Oct 2014 17:05:25 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 02 Oct 2014 17:05:23 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s92H5BWb001589 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 2 Oct 2014 13:05:11 -0400 Received: from tucnak.zalov.cz (ovpn-116-116.ams2.redhat.com [10.36.116.116]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s92H58md004223 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO); Thu, 2 Oct 2014 13:05:10 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.14.9/8.14.9) with ESMTP id s92H57ed028857; Thu, 2 Oct 2014 19:05:07 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.14.9/8.14.9/Submit) id s92H530I028856; Thu, 2 Oct 2014 19:05:03 +0200 Date: Thu, 02 Oct 2014 17:05:00 -0000 From: Jakub Jelinek To: Segher Boessenkool Cc: Andrew MacLeod , Bernd Schmidt , gcc-patches , richard.sandiford@arm.com Subject: Re: parallel check output changes? Message-ID: <20141002170503.GH1986@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <20140918130109.GH17454@tucnak.redhat.com> <541AD880.7080703@redhat.com> <541AF451.3070406@redhat.com> <541B1710.8060809@codesourcery.com> <20140918173609.GM17454@tucnak.redhat.com> <20140918184455.GB28595@gate.crashing.org> <20140919093723.GA26414@gate.crashing.org> <87iokel5c0.fsf@e105548-lin.cambridge.arm.com> <5422DB41.1090800@redhat.com> <20141002164739.GA25260@gate.crashing.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20141002164739.GA25260@gate.crashing.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2014-10/txt/msg00191.txt.bz2 On Thu, Oct 02, 2014 at 11:47:39AM -0500, Segher Boessenkool wrote: > On Wed, Sep 24, 2014 at 10:54:57AM -0400, Andrew MacLeod wrote: > > Is this suppose to be resolved now? I'm still seeing some issues with a > > branch cut from mainline from yesterday. > > Confirmed. The following patch works for me, and Andrew has tested it > as well. The comment it removes isn't valid before the patch either. > > Okay for mainline? > > > Segher > > > 2014-10-02 Segher Boessenkool > > contrib/ > * dg-extract-results.py (output_variation): Always sort if do_sum. Ok, thanks. > --- a/contrib/dg-extract-results.py > +++ b/contrib/dg-extract-results.py > @@ -495,15 +495,7 @@ class Prog: > key = attrgetter ('name')): > sys.stdout.write ('Running ' + harness.name + ' ...\n') > if self.do_sum: > - # Keep the original test result order if there was only > - # one segment for this harness. This is needed for > - # unsorted.exp, which has unusual test names. Otherwise > - # sort the tests by test filename. If there are several > - # subtests for the same test filename (such as 'compilation', > - # 'test for excess errors', etc.) then keep the subtests > - # in the original order. > - if len (harness.segments) > 1: > - harness.results.sort() > + harness.results.sort() > for (key, line) in harness.results: > sys.stdout.write (line) > else: Jakub