PR inline-asm/84742
[official-gcc.git] / contrib / dg-extract-results.sh
blob6ee3d26de31620c33cccb5b4159016507cdf6855
1 #! /bin/sh
3 # For a specified tool and optional list of test variants, extract
4 # test results from one or more test summary (.sum) files and combine
5 # the results into a new test summary file, sent to the standard output.
6 # The resulting file can be used with test result comparison scripts for
7 # results from tests that were run in parallel. See usage() below.
9 # Copyright (C) 2008, 2009, 2010, 2012 Free Software Foundation
10 # Contributed by Janis Johnson <janis187@us.ibm.com>
12 # This file is part of GCC.
14 # GCC is free software; you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation; either version 3, or (at your option)
17 # any later version.
19 # GCC is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with GCC; see the file COPYING. If not, write to
26 # the Free Software Foundation, 51 Franklin Street, Fifth Floor,
27 # Boston, MA 02110-1301, USA.
29 PROGNAME=dg-extract-results.sh
31 # Try to use the python version if possible, since it tends to be faster.
32 PYTHON_VER=`echo "$0" | sed 's/sh$/py/'`
33 if test "$PYTHON_VER" != "$0" &&
34 test -f "$PYTHON_VER" &&
35 python -c 'import sys, getopt, re, io, datetime, operator; sys.exit (0 if sys.version_info >= (2, 6) else 1)' \
36 > /dev/null 2> /dev/null; then
37 exec python $PYTHON_VER "$@"
40 usage() {
41 cat <<EOF >&2
42 Usage: $PROGNAME [-t tool] [-l variant-list] [-L] sum-file ...
44 tool The tool (e.g. g++, libffi) for which to create a
45 new test summary file. If not specified then all
46 specified sum files must be for the same tool.
47 variant-list One or more test variant names. If the list is
48 not specified then one is constructed from all
49 variants in the files for <tool>.
50 sum-file A test summary file with the format of those
51 created by runtest from DejaGnu.
52 If -L is used, merge *.log files instead of *.sum. In this
53 mode the exact order of lines may not be preserved, just different
54 Running *.exp chunks should be in correct order.
55 EOF
58 # Write a message to the standard error.
60 msg() {
61 echo "$@" >&2
64 # Parse the command-line options.
66 VARIANTS=""
67 TOOL=""
68 MODE="sum"
70 while getopts "l:t:L" ARG; do
71 case $ARG in
72 l) VARIANTS="${VARIANTS} ${OPTARG}";;
73 t) test -z "$TOOL" || (msg "${PROGNAME}: only one tool can be specified"; exit 1);
74 TOOL="${OPTARG}";;
75 L) MODE="log";;
76 \?) usage; exit 0;;
77 esac
78 done
79 shift `expr ${OPTIND} - 1`
81 if test $# -lt 1 ; then
82 usage
83 exit 1
86 TMPDIR=${TMPDIR-/tmp}
87 SUM_FILES="$@"
88 FIRST_SUM=$1
89 TMP=
90 trap 'EXIT_STATUS=$?; rm -rf $TMP && exit $EXIT_STATUS' 0
91 # Create a (secure) tmp directory for tmp files.
93 TMP=`(umask 077 && mktemp -d -q "${TMPDIR}/dg-combine-results-$$-XXXXXX") 2>/dev/null` &&
94 test -n "$TMP" && test -d "$TMP"
95 } ||
97 TMP=${TMPDIR}/dg-combine-results-$$-$RANDOM
98 (umask 077 && mkdir $TMP)
99 } ||
101 msg "${PROGNAME}: cannot create a temporary directory"
102 { (exit 1); exit 1; }
105 # Find a good awk.
107 if test -z "$AWK" ; then
108 for AWK in gawk nawk awk
110 if type $AWK 2>&1 | grep 'not found' > /dev/null 2>&1 ; then
112 else
113 break
115 done
118 # Verify that the specified summary files exist.
120 ERROR=0
121 for FILE in $SUM_FILES
123 if ! test -f $FILE ; then
124 msg "${PROGNAME}: file $FILE does not exist."
125 ERROR=1
127 done
128 test $ERROR -eq 0 || exit 1
130 # Test if grep supports the '--text' option
132 GREP=grep
134 if echo -e '\x00foo\x00' | $GREP --text foo > /dev/null 2>&1 ; then
135 GREP="grep --text"
136 else
137 # Our grep does not recognize the '--text' option. We have to
138 # treat our files in order to remove any non-printable character.
139 for file in $SUM_FILES ; do
140 mv $file ${file}.orig
141 cat -v ${file}.orig > $file
142 done
145 if [ -z "$TOOL" ]; then
146 # If no tool was specified, all specified summary files must be for
147 # the same tool.
149 CNT=`$GREP '=== .* tests ===' $SUM_FILES | $AWK '{ print $3 }' | sort -u | wc -l`
150 if [ $CNT -eq 1 ]; then
151 TOOL=`$GREP '=== .* tests ===' $FIRST_SUM | $AWK '{ print $2 }'`
152 else
153 msg "${PROGNAME}: sum files are for multiple tools, specify a tool"
154 msg ""
155 usage
156 exit 1
158 else
159 # Ignore the specified summary files that are not for this tool. This
160 # should keep the relevant files in the same order.
162 SUM_FILES=`$GREP -l "=== $TOOL" $SUM_FILES`
163 if test -z "$SUM_FILES" ; then
164 msg "${PROGNAME}: none of the specified files are results for $TOOL"
165 exit 1
169 if [ "$TOOL" = acats ]; then
170 # Acats *.sum or *.log files aren't dejagnu generated, and they have
171 # somewhat different format.
172 ACATS_AWK=${TMP}/acats.awk
173 cat <<EOF > $ACATS_AWK
174 BEGIN {
175 print_prologue=1; curfile=""; insummary=0
176 passcnt=0; failcnt=0; unsupcnt=0; failures=""
178 /^[ \t]*=== acats configuration ===/ {
179 insummary=0
180 if (print_prologue) print
181 next
183 /^[ \t]*=== acats tests ===/ {
184 if (print_prologue) print
185 print_prologue=0
186 next
188 /^Running chapter / {
189 if (curfile) close (curfile)
190 curfile="${TMP}/chapter-"\$3
191 print >> curfile
192 next
194 /^[ \t]*=== acats Summary ===/ {
195 if (curfile) close (curfile)
196 curfile=""
197 insummary=1
198 next
200 /^# of expected passes/ { if (insummary == 1) passcnt += \$5; next; }
201 /^# of unexpected failures/ { if (insummary == 1) failcnt += \$5; next; }
202 /^# of unsupported tests/ { if (insummary == 1) unsupcnt += \$5; next; }
203 /^\*\*\* FAILURES: / {
204 if (insummary == 1) {
205 if (failures) sub(/^\*\*\* FAILURES:/,"")
206 failures=failures""\$0
210 if (print_prologue) { print; next }
211 if (curfile) print >> curfile
213 END {
214 system ("cat ${TMP}/chapter-*")
215 print " === acats Summary ==="
216 print "# of expected passes " passcnt
217 print "# of unexpected failures " failcnt
218 if (unsupcnt) print "# of unsupported tests " unsupcnt
219 if (failures) print failures
223 rm -f ${TMP}/chapter-*
224 $AWK -f $ACATS_AWK $SUM_FILES
225 exit 0
228 # If no variants were specified, find all variants in the remaining
229 # summary files. Otherwise, ignore specified variants that aren't in
230 # any of those summary files.
232 if test -z "$VARIANTS" ; then
233 VAR_AWK=${TMP}/variants.awk
234 cat <<EOF > $VAR_AWK
235 /^Schedule of variations:/ { in_vars=1; next }
236 /^$/ { in_vars=0 }
237 /^Running target/ { exit }
238 { if (in_vars==1) print \$1; else next }
241 touch ${TMP}/varlist
242 for FILE in $SUM_FILES; do
243 $AWK -f $VAR_AWK $FILE >> ${TMP}/varlist
244 done
245 VARIANTS="`sort -u ${TMP}/varlist`"
246 else
247 VARS="$VARIANTS"
248 VARIANTS=""
249 for VAR in $VARS
251 $GREP "Running target $VAR" $SUM_FILES > /dev/null && VARIANTS="$VARIANTS $VAR"
252 done
255 # Find out if we have more than one variant, or any at all.
257 VARIANT_COUNT=0
258 for VAR in $VARIANTS
260 VARIANT_COUNT=`expr $VARIANT_COUNT + 1`
261 done
263 if test $VARIANT_COUNT -eq 0 ; then
264 msg "${PROGNAME}: no file for $TOOL has results for the specified variants"
265 exit 1
268 cat $SUM_FILES \
269 | $AWK '/^Running/ { if ($2 != "target" && $3 == "...") print "EXPFILE: "$2 } ' \
270 | sort -u > ${TMP}/expfiles
272 # Write the begining of the combined summary file.
274 head -n 2 $FIRST_SUM
275 echo
276 echo " === $TOOL tests ==="
277 echo
278 echo "Schedule of variations:"
279 for VAR in $VARIANTS
281 echo " $VAR"
282 done
283 echo
285 # For each test variant for the tool, copy test reports from each of the
286 # summary files. Set up two awk scripts from within the loop to
287 # initialize VAR and TOOL with the script, rather than assuming that the
288 # available version of awk can pass variables from the command line.
290 for VAR in $VARIANTS
292 GUTS_AWK=${TMP}/guts.awk
293 cat << EOF > $GUTS_AWK
294 BEGIN {
295 variant="$VAR"
296 firstvar=1
297 expfileno=1
298 cnt=0
299 print_using=0
300 need_close=0
302 /^EXPFILE: / {
303 expfiles[expfileno] = \$2
304 expfilesr[\$2] = expfileno
305 expfileno = expfileno + 1
307 /^Running target / {
308 curvar = \$3
309 if (variant == curvar && firstvar == 1) { print; print_using=1; firstvar = 0 }
310 next
312 /^Using / {
313 if (variant == curvar && print_using) { print; next }
315 /^Running .*\\.exp \\.\\.\\./ {
316 print_using=0
317 if (variant == curvar) {
318 if (need_close) close(curfile)
319 curfile="${TMP}/list"expfilesr[\$2]
320 expfileseen[\$2]=expfileseen[\$2] + 1
321 need_close=0
322 testname="00"
323 next
326 /^\t\t=== .* ===$/ { curvar = ""; next }
327 /^(PASS|XPASS|FAIL|XFAIL|UNRESOLVED|WARNING|ERROR|UNSUPPORTED|UNTESTED|KFAIL):/ {
328 testname=\$2
329 # Ugly hack for gfortran.dg/dg.exp
330 if ("$TOOL" == "gfortran" && testname ~ /^gfortran.dg\/g77\//)
331 testname="h"testname
333 /^$/ { if ("$MODE" == "sum") next }
334 { if (variant == curvar && curfile) {
335 if ("$MODE" == "sum") {
336 printf "%s %08d|", testname, cnt >> curfile
337 cnt = cnt + 1
339 filewritten[curfile]=1
340 need_close=1
341 print >> curfile
342 } else
343 next
345 END {
347 while (n < expfileno) {
348 if (expfileseen[expfiles[n]]) {
349 print "Running "expfiles[n]" ..."
350 if (filewritten["${TMP}/list"n]) {
351 if (expfileseen[expfiles[n]] == 1)
352 cmd="cat"
353 else
354 cmd="LC_ALL=C sort"
355 if ("$MODE" == "sum")
356 system (cmd" ${TMP}/list"n" | sed -n 's/^[^ ]* [^ |]*|//p'")
357 else
358 system ("cat ${TMP}/list"n)
361 n = n + 1
366 SUMS_AWK=${TMP}/sums.awk
367 rm -f $SUMS_AWK
368 cat << EOF > $SUMS_AWK
369 BEGIN {
370 variant="$VAR"
371 tool="$TOOL"
372 passcnt=0; failcnt=0; untstcnt=0; xpasscnt=0; xfailcnt=0; kpasscnt=0; kfailcnt=0; unsupcnt=0; unrescnt=0; dgerrorcnt=0;
373 curvar=""; insummary=0
375 /^Running target / { curvar = \$3; next }
376 /^ERROR: \(DejaGnu\)/ { if (variant == curvar) dgerrorcnt += 1 }
377 /^# of / { if (variant == curvar) insummary = 1 }
378 /^# of expected passes/ { if (insummary == 1) passcnt += \$5; next; }
379 /^# of unexpected successes/ { if (insummary == 1) xpasscnt += \$5; next; }
380 /^# of unexpected failures/ { if (insummary == 1) failcnt += \$5; next; }
381 /^# of expected failures/ { if (insummary == 1) xfailcnt += \$5; next; }
382 /^# of unknown successes/ { if (insummary == 1) kpasscnt += \$5; next; }
383 /^# of known failures/ { if (insummary == 1) kfailcnt += \$5; next; }
384 /^# of untested testcases/ { if (insummary == 1) untstcnt += \$5; next; }
385 /^# of unresolved testcases/ { if (insummary == 1) unrescnt += \$5; next; }
386 /^# of unsupported tests/ { if (insummary == 1) unsupcnt += \$5; next; }
387 /^$/ { if (insummary == 1)
388 { insummary = 0; curvar = "" }
389 next
391 { next }
392 END {
393 printf ("\t\t=== %s Summary for %s ===\n\n", tool, variant)
394 if (dgerrorcnt != 0) printf ("# of DejaGnu errors\t\t%d\n", dgerrorcnt)
395 if (passcnt != 0) printf ("# of expected passes\t\t%d\n", passcnt)
396 if (failcnt != 0) printf ("# of unexpected failures\t%d\n", failcnt)
397 if (xpasscnt != 0) printf ("# of unexpected successes\t%d\n", xpasscnt)
398 if (xfailcnt != 0) printf ("# of expected failures\t\t%d\n", xfailcnt)
399 if (kpasscnt != 0) printf ("# of unknown successes\t\t%d\n", kpasscnt)
400 if (kfailcnt != 0) printf ("# of known failures\t\t%d\n", kfailcnt)
401 if (untstcnt != 0) printf ("# of untested testcases\t\t%d\n", untstcnt)
402 if (unrescnt != 0) printf ("# of unresolved testcases\t%d\n", unrescnt)
403 if (unsupcnt != 0) printf ("# of unsupported tests\t\t%d\n", unsupcnt)
407 PVAR=`echo $VAR | sed 's,/,.,g'`
408 TMPFILE=${TMP}/var-$PVAR
409 rm -f $TMPFILE
410 rm -f ${TMP}/list*
411 cat ${TMP}/expfiles $SUM_FILES | $AWK -f $GUTS_AWK
412 cat $SUM_FILES | $AWK -f $SUMS_AWK > $TMPFILE
413 # If there are multiple variants, output the counts for this one;
414 # otherwise there will just be the final counts at the end.
415 test $VARIANT_COUNT -eq 1 || cat $TMPFILE
416 done
418 # Set up an awk script to get the combined summary counts for the tool.
420 TOTAL_AWK=${TMP}/total.awk
421 cat << EOF > $TOTAL_AWK
422 BEGIN {
423 tool="$TOOL"
424 passcnt=0; failcnt=0; untstcnt=0; xpasscnt=0; xfailcnt=0; kfailcnt=0; unsupcnt=0; unrescnt=0; dgerrorcnt=0
426 /^# of DejaGnu errors/ { dgerrorcnt += \$5 }
427 /^# of expected passes/ { passcnt += \$5 }
428 /^# of unexpected failures/ { failcnt += \$5 }
429 /^# of unexpected successes/ { xpasscnt += \$5 }
430 /^# of expected failures/ { xfailcnt += \$5 }
431 /^# of unknown successes/ { kpasscnt += \$5 }
432 /^# of known failures/ { kfailcnt += \$5 }
433 /^# of untested testcases/ { untstcnt += \$5 }
434 /^# of unresolved testcases/ { unrescnt += \$5 }
435 /^# of unsupported tests/ { unsupcnt += \$5 }
436 END {
437 printf ("\n\t\t=== %s Summary ===\n\n", tool)
438 if (dgerrorcnt != 0) printf ("# of DejaGnu errors\t\t%d\n", dgerrorcnt)
439 if (passcnt != 0) printf ("# of expected passes\t\t%d\n", passcnt)
440 if (failcnt != 0) printf ("# of unexpected failures\t%d\n", failcnt)
441 if (xpasscnt != 0) printf ("# of unexpected successes\t%d\n", xpasscnt)
442 if (xfailcnt != 0) printf ("# of expected failures\t\t%d\n", xfailcnt)
443 if (kpasscnt != 0) printf ("# of unknown successes\t\t%d\n", kpasscnt)
444 if (kfailcnt != 0) printf ("# of known failures\t\t%d\n", kfailcnt)
445 if (untstcnt != 0) printf ("# of untested testcases\t\t%d\n", untstcnt)
446 if (unrescnt != 0) printf ("# of unresolved testcases\t%d\n", unrescnt)
447 if (unsupcnt != 0) printf ("# of unsupported tests\t\t%d\n", unsupcnt)
451 # Find the total summaries for the tool and add to the end of the output.
452 cat ${TMP}/var-* | $AWK -f $TOTAL_AWK
454 # This is ugly, but if there's version output from the compiler under test
455 # at the end of the file, we want it. The other thing that might be there
456 # is the final summary counts.
457 tail -2 $FIRST_SUM | $GREP '^#' > /dev/null || tail -2 $FIRST_SUM
459 exit 0