]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* dg-extract-results.sh: Fix result order to match sequential case.
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Tue, 2 Mar 2010 20:28:55 +0000 (20:28 +0000)
committerRainer Orth <ro@gcc.gnu.org>
Tue, 2 Mar 2010 20:28:55 +0000 (20:28 +0000)
From-SVN: r157175

contrib/ChangeLog
contrib/dg-extract-results.sh

index 46c1cc3170b52204a5c3fce8bf1c4b6236a68213..94145594bedd86cf5ec64107b2778c2140c0397a 100644 (file)
@@ -1,3 +1,7 @@
+2010-03-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * dg-extract-results.sh: Fix result order to match sequential case.
+
 2010-01-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * check_warning_flags.sh: Use \012 instead of \n with tr.
index 0014b436a7806620255b191567b3b5a2ee437e52..9d3c756d555fa0fddaba0b4626c80d4daeb7e7ea 100755 (executable)
@@ -365,8 +365,8 @@ BEGIN {
 END {
   printf ("\t\t=== %s Summary for %s ===\n\n", tool, variant)
   if (passcnt != 0) printf ("# of expected passes\t\t%d\n", passcnt)
-  if (xpasscnt != 0) printf ("# of unexpected successes\t%d\n", xpasscnt)
   if (failcnt != 0) printf ("# of unexpected failures\t%d\n", failcnt)
+  if (xpasscnt != 0) printf ("# of unexpected successes\t%d\n", xpasscnt)
   if (xfailcnt != 0) printf ("# of expected failures\t\t%d\n", xfailcnt)
   if (untstcnt != 0) printf ("# of untested testcases\t\t%d\n", untstcnt)
   if (unrescnt != 0) printf ("# of unresolved testcases\t%d\n", unrescnt)