From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23548 invoked by alias); 23 Sep 2016 11:37:36 -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 23534 invoked by uid 89); 23 Sep 2016 11:37:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.7 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=Hx-languages-length:1243, Biotechnology, D*Uni-Bielefeld.DE, bielefeld X-HELO: smtp.CeBiTec.Uni-Bielefeld.DE Received: from smtp.CeBiTec.Uni-Bielefeld.DE (HELO smtp.CeBiTec.Uni-Bielefeld.DE) (129.70.160.84) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 23 Sep 2016 11:37:25 +0000 Received: from localhost (localhost.CeBiTec.Uni-Bielefeld.DE [127.0.0.1]) by smtp.CeBiTec.Uni-Bielefeld.DE (Postfix) with ESMTP id 6D26E7EF; Fri, 23 Sep 2016 13:37:23 +0200 (CEST) Received: from smtp.CeBiTec.Uni-Bielefeld.DE ([127.0.0.1]) by localhost (malfoy.CeBiTec.Uni-Bielefeld.DE [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tg1gokcvnaCD; Fri, 23 Sep 2016 13:37:21 +0200 (CEST) Received: from lokon.CeBiTec.Uni-Bielefeld.DE (lokon.CeBiTec.Uni-Bielefeld.DE [129.70.161.110]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.CeBiTec.Uni-Bielefeld.DE (Postfix) with ESMTPS id D1BE47EE; Fri, 23 Sep 2016 13:37:21 +0200 (CEST) Received: (from ro@localhost) by lokon.CeBiTec.Uni-Bielefeld.DE (8.15.2+Sun/8.15.2/Submit) id u8NBbL9D012230; Fri, 23 Sep 2016 13:37:21 +0200 (MEST) From: Rainer Orth To: Christophe Lyon Cc: "gcc-patches\@gcc.gnu.org" Subject: Re: Report DejaGnu ERROR messages in dg-extract-results References: Date: Fri, 23 Sep 2016 11:54:00 -0000 In-Reply-To: (Christophe Lyon's message of "Tue, 20 Sep 2016 11:26:37 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (usg-unix-v) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-IsSubscribed: yes X-SW-Source: 2016-09/txt/msg01672.txt.bz2 --=-=-= Content-Type: text/plain Content-length: 466 Hi Christophe, > We recently faced a problem where a DejaGnu error went un-noticed > (https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01879.html). I just noticed that your patch contained an unrelated and bogus change, reverted as follows. This will only show up on targets that lack (a sufficiently recent version of) python, Solaris 10 in my case. Rainer 2016-09-23 Rainer Orth * dg-extract-results.sh: Revert bogus change. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=dge.patch Content-length: 596 diff --git a/contrib/dg-extract-results.sh b/contrib/dg-extract-results.sh --- a/contrib/dg-extract-results.sh +++ b/contrib/dg-extract-results.sh @@ -434,7 +434,7 @@ BEGIN { /^# of unresolved testcases/ { unrescnt += \$5 } /^# of unsupported tests/ { unsupcnt += \$5 } END { - printf ("\n\t\t=== %s MySummary ===\n\n", tool) + printf ("\n\t\t=== %s Summary ===\n\n", tool) if (dgerrorcnt != 0) printf ("# of DejaGnu errors\t\t%d\n", dgerrorcnt) if (passcnt != 0) printf ("# of expected passes\t\t%d\n", passcnt) if (failcnt != 0) printf ("# of unexpected failures\t%d\n", failcnt) --=-=-= Content-Type: text/plain Content-length: 143 -- ----------------------------------------------------------------------------- Rainer Orth, Center for Biotechnology, Bielefeld University --=-=-=--