From 963437740b168e362ccce4c8e677b2df3ddc96c1 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Thu, 17 Jan 2013 14:31:11 +0000 Subject: [PATCH] Merge dg-extract-results.sh from gcc upstream (svn 195224). gdb/testsuite/ 2013-01-17 Pedro Alves Merge dg-extract-results.sh from upstream (svn 195224). 2013-01-15 David Blaikie * dg-extract-results.sh: Fix order of summary counts. 2013-01-15 David Blaikie * dg-extract-results.sh: Constrain the start-of-log pattern. 2013-01-15 David Blaikie * dg-extract-results.sh: Handle KPASSes. 2010-05-25 Rainer Orth * dg-extract-results.sh: Redirect grep output to /dev/null instead of grep -q. --- gdb/testsuite/ChangeLog | 17 +++++++++++++++++ gdb/testsuite/dg-extract-results.sh | 12 ++++++++---- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 53432268297..7f5f0a41036 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,20 @@ +2013-01-17 Pedro Alves + + Merge dg-extract-results.sh from upstream (svn 195224). + + 2013-01-15 David Blaikie + * dg-extract-results.sh: Fix order of summary counts. + + 2013-01-15 David Blaikie + * dg-extract-results.sh: Constrain the start-of-log pattern. + + 2013-01-15 David Blaikie + * dg-extract-results.sh: Handle KPASSes. + + 2010-05-25 Rainer Orth + * dg-extract-results.sh: Redirect grep output to /dev/null instead + of grep -q. + 2012-01-17 Sanjoy Das * gdb.base/jit-reader.exp: New file. Test case for the jit-reader diff --git a/gdb/testsuite/dg-extract-results.sh b/gdb/testsuite/dg-extract-results.sh index 574833eb377..7df2bb40885 100755 --- a/gdb/testsuite/dg-extract-results.sh +++ b/gdb/testsuite/dg-extract-results.sh @@ -222,7 +222,7 @@ else VARIANTS="" for VAR in $VARS do - grep -q "Running target $VAR" $SUM_FILES && VARIANTS="$VARIANTS $VAR" + grep "Running target $VAR" $SUM_FILES > /dev/null && VARIANTS="$VARIANTS $VAR" done fi @@ -286,7 +286,7 @@ BEGIN { /^Using / { if (variant == curvar && print_using) { print; next } } -/^Running / { +/^Running .*\\.exp \\.\\.\\./ { print_using=0 if (variant == curvar) { if (need_close) close(curfile) @@ -343,7 +343,7 @@ EOF BEGIN { variant="$VAR" tool="$TOOL" - passcnt=0; failcnt=0; untstcnt=0; xpasscnt=0; xfailcnt=0; kfailcnt=0; unsupcnt=0; unrescnt=0; + passcnt=0; failcnt=0; untstcnt=0; xpasscnt=0; xfailcnt=0; kpasscnt=0; kfailcnt=0; unsupcnt=0; unrescnt=0; curvar=""; insummary=0 } /^Running target / { curvar = \$3; next } @@ -352,6 +352,7 @@ BEGIN { /^# of unexpected successes/ { if (insummary == 1) xpasscnt += \$5; next; } /^# of unexpected failures/ { if (insummary == 1) failcnt += \$5; next; } /^# of expected failures/ { if (insummary == 1) xfailcnt += \$5; next; } +/^# of unknown successes/ { if (insummary == 1) kpasscnt += \$5; next; } /^# of known failures/ { if (insummary == 1) kfailcnt += \$5; next; } /^# of untested testcases/ { if (insummary == 1) untstcnt += \$5; next; } /^# of unresolved testcases/ { if (insummary == 1) unrescnt += \$5; next; } @@ -367,6 +368,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", 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) @@ -397,6 +399,7 @@ BEGIN { /^# of unexpected failures/ { failcnt += \$5 } /^# of unexpected successes/ { xpasscnt += \$5 } /^# of expected failures/ { xfailcnt += \$5 } +/^# of unknown successes/ { kpasscnt += \$5 } /^# of known failures/ { kfailcnt += \$5 } /^# of untested testcases/ { untstcnt += \$5 } /^# of unresolved testcases/ { unrescnt += \$5 } @@ -407,6 +410,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", 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) @@ -420,6 +424,6 @@ cat ${TMP}/var-* | $AWK -f $TOTAL_AWK # This is ugly, but if there's version output from the compiler under test # at the end of the file, we want it. The other thing that might be there # is the final summary counts. -tail -2 $FIRST_SUM | grep -q '^#' || tail -2 $FIRST_SUM +tail -2 $FIRST_SUM | grep '^#' > /dev/null || tail -2 $FIRST_SUM exit 0 -- 2.30.2