diff mbox

Report DejaGnu ERROR messages in dg-extract-results

Message ID ydd37kqc0en.fsf@CeBiTec.Uni-Bielefeld.DE
State New
Headers show

Commit Message

Rainer Orth Sept. 23, 2016, 11:37 a.m. UTC
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  <ro@CeBiTec.Uni-Bielefeld.DE>

	* dg-extract-results.sh: Revert bogus change.

Comments

Christophe Lyon Sept. 24, 2016, 2:39 a.m. UTC | #1
On 23 September 2016 at 13:37, Rainer Orth <ro@cebitec.uni-bielefeld.de> wrote:
> 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.
>

Oops sorry, it was debug code I forgot to remove.

Thanks!

>         Rainer
>
>
> 2016-09-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
>
>         * dg-extract-results.sh: Revert bogus change.
>
>
>
> --
> -----------------------------------------------------------------------------
> Rainer Orth, Center for Biotechnology, Bielefeld University
>
diff mbox

Patch

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)