From patchwork Thu Sep 18 18:44:55 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Segher Boessenkool X-Patchwork-Id: 390910 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 28CBF14018B for ; Fri, 19 Sep 2014 04:45:12 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; q=dns; s=default; b=hnb78sJUVqJzWvB1E W5+9Rj0zPIKIhHnG/WgJi6rZl47+e8BFpeyqyL7B06qYubrfTbYRNSHiCaIBi0w4 2z/cSYhPCdoY3HMWjA8yM2oMuzG/AwgG5bti9wJwsWAM8ZesqrfQ7HjW0OaphwKg tAMFxb3JVN8dwQx8FDKHJNUaEM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=default; bh=fatgyH5v2p+c1FlRdr69HWt sksI=; b=LDttOHyIeOrri/hG9QPhq9bELfDWUe+BuOW8xO3tmQTcUXF1BsOsACU iZWlTcr7AmgEFmexvBi/O1JtjhnGNcbuW4Y3VY3+9LsUUsXUpQqDhBReQtfr7+zi kZYcVhpZSWTS4lzRiiBpc5p6KWBt18ZyAoq8FJEv3niyPyz2x/QA= Received: (qmail 17702 invoked by alias); 18 Sep 2014 18:45:05 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 17684 invoked by uid 89); 18 Sep 2014 18:45:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-HELO: gate.crashing.org Received: from gate.crashing.org (HELO gate.crashing.org) (63.228.1.57) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 18 Sep 2014 18:45:04 +0000 Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.13.8) with ESMTP id s8IIiutm002869; Thu, 18 Sep 2014 13:44:57 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id s8IIitgM002868; Thu, 18 Sep 2014 13:44:55 -0500 Date: Thu, 18 Sep 2014 13:44:55 -0500 From: Segher Boessenkool To: Jakub Jelinek Cc: Bernd Schmidt , Andrew MacLeod , gcc-patches Subject: Re: parallel check output changes? Message-ID: <20140918184455.GB28595@gate.crashing.org> References: <541AD692.4030907@redhat.com> <20140918130109.GH17454@tucnak.redhat.com> <541AD880.7080703@redhat.com> <541AF451.3070406@redhat.com> <541B1710.8060809@codesourcery.com> <20140918173609.GM17454@tucnak.redhat.com> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <20140918173609.GM17454@tucnak.redhat.com> User-Agent: Mutt/1.4.2.3i X-IsSubscribed: yes On Thu, Sep 18, 2014 at 07:36:09PM +0200, Jakub Jelinek wrote: > Segher on IRC mentioned that changing result_re in dg-extract-results.py > should help here (or disabling the python version, *.sh version should > sort everything). I am testing a patch that is just Relatedly, is it just me or are most lines of the test summaries (the "#" lines after "===") missing since the parallelisation patches? Segher diff --git a/contrib/dg-extract-results.py b/contrib/dg-extract-results.py index cccbfd3..3781423 100644 --- a/contrib/dg-extract-results.py +++ b/contrib/dg-extract-results.py @@ -117,7 +117,7 @@ class Prog: self.tool_re = re.compile (r'^\t\t=== (.*) tests ===$') self.result_re = re.compile (r'^(PASS|XPASS|FAIL|XFAIL|UNRESOLVED' r'|WARNING|ERROR|UNSUPPORTED|UNTESTED' - r'|KFAIL):\s*(\S+)') + r'|KFAIL):\s*(.+)') self.completed_re = re.compile (r'.* completed at (.*)') # Pieces of text to write at the head of the output. # start_line is a pair in which the first element is a datetime