dg-extract-results.sh: Fix order of summary counts.
2013-01-15 David Blaikie <dblaikie@gmail.com> * dg-extract-results.sh: Fix order of summary counts. From-SVN: r195224
This commit is contained in:
parent
440e93afc6
commit
db06526856
@ -4,6 +4,8 @@
|
||||
|
||||
* dg-extract-results.sh: Constrain the start-of-log pattern.
|
||||
|
||||
* dg-extract-results.sh: Fix order of summary counts.
|
||||
|
||||
2012-12-01 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
|
||||
|
||||
* testsuite-management/validate_failures.py
|
||||
|
@ -370,7 +370,7 @@ END {
|
||||
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 (kpasscnt != 0) printf ("# of unknown successes\t\t%d\n", kfailcnt)
|
||||
if (kpasscnt != 0) printf ("# of unknown successes\t\t%d\n", kpasscnt)
|
||||
if (kfailcnt != 0) printf ("# of known failures\t\t%d\n", kfailcnt)
|
||||
if (untstcnt != 0) printf ("# of untested testcases\t\t%d\n", untstcnt)
|
||||
if (unrescnt != 0) printf ("# of unresolved testcases\t%d\n", unrescnt)
|
||||
@ -412,7 +412,7 @@ END {
|
||||
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 (kpasscnt != 0) printf ("# of unknown successes\t\t%d\n", kfailcnt)
|
||||
if (kpasscnt != 0) printf ("# of unknown successes\t\t%d\n", kpasscnt)
|
||||
if (kfailcnt != 0) printf ("# of known failures\t\t%d\n", kfailcnt)
|
||||
if (untstcnt != 0) printf ("# of untested testcases\t\t%d\n", untstcnt)
|
||||
if (unrescnt != 0) printf ("# of unresolved testcases\t%d\n", unrescnt)
|
||||
|
Loading…
Reference in New Issue
Block a user