* tree.c (lvalue_p_1): Use DECL_C_BIT_FIELD to check for
[official-gcc.git] / contrib / test_summary
blob7a621b7b55a8a01aa02e35d0075f47ac68757e19
1 #! /bin/sh
3 # (C) 1998-1999 Free Software Foundation
4 # Originally by Alexandre Oliva <oliva@dcc.unicamp.br>
6 # This script is Free Software, and it can be copied, distributed and
7 # modified as defined in the GNU General Public License. A copy of
8 # its license can be downloaded from http://www.gnu.org/copyleft/gpl.html
10 # This script processes *.{sum,log} files, producing a shell-script
11 # that sends e-mail to the appropriate lists and renames files to
12 # *.sent. It currently handles only gcc, but it should be quite easy
13 # to modify it to handle other packages and its mailing lists.
15 # The scripts assumes it is run in the root directory of the build
16 # tree, and it will include all .sum files it finds in the mail
17 # report.
19 # configure flags are extracted from ./config.status
21 # if the BOOT_CFLAGS environment variable is set, it will be included
22 # in the mail report too.
24 # The usage pattern of this script is as follows:
26 # test_summary | more # so as to observe what should be done
28 # test_summary | sh # so as to actually send e-mail and move log files
30 # It accepts a few command line arguments. For example:
31 # -o: re-reads logs that have been mailed already (.sum.sent)
32 # -t: prevents logs from being renamed
33 # -p: prepend specified file (or list of files: -p "a b") to the report
34 # -i: append specified file (or list of files: -i "a b") to the report
35 # -m: specify the e-mail address to send notes to. An appropriate default
36 # should be selected from the log files.
37 # -f: force reports to be mailed; if omitted, only reports that differ
38 # from the sent.* version are sent.
40 # Find a good awk.
41 if test -z "$AWK" ; then
42 for AWK in gawk nawk awk ; do
43 if type $AWK 2>&1 | grep 'not found' > /dev/null 2>&1 ; then
45 else
46 break
48 done
51 : ${filesuffix=}; export fileprefix
52 : ${move=true}; export move
53 : ${forcemail=false}; export forcemail
54 while true; do
55 case "$1" in
56 -o) filesuffix=.sent; move=false; : ${mailto=nobody}; shift;;
57 -t) move=false; shift;;
58 -p) prepend_logs=${prepend_logs+"$prepend_logs "}"$2"; shift 2;;
59 -i) append_logs=${append_logs+"$append_logs "}"$2"; shift 2;;
60 -m) mailto=$2; forcemail=true; shift 2;;
61 -f) unset mailto; forcemail=true; shift;;
62 *) break;;
63 esac
64 done
65 : ${mailto="\" address \""}; export mailto
66 files=`find . -name \*.sum$filesuffix -print`
67 anyfile=false anychange=$forcemail &&
68 for file in $files; do
69 [ -f $file ] &&
70 anyfile=true &&
71 { $anychange ||
72 anychange=`diff -u $file.sent $file 2>/dev/null |
73 if test ! -f $file.sent ||
74 egrep '^[-+](XPASS|FAIL)' >/dev/null; then
75 echo true
76 else
77 echo false
81 true
82 done &&
83 $anyfile &&
84 if $forcemail || $anychange; then :; else mailto=nobody; fi &&
85 $AWK '
86 BEGIN {
87 lang="";
88 address="gcc-testresults@gcc.gnu.org";
89 version="gcc";
90 print "cat <<\EOF |";
91 '${prepend_logs+" system(\"cat $prepend_logs\"); "}'
93 $1 ~ /\/configure$/ { $1 = "configure flags:"; configflags = $0 }
94 /^Running target / { print ""; print; }
95 /^Target / { if (host != "") next; else host = $3; }
96 /^Host / && host ~ /^unix\{.*\}$/ { host = $3 " " substr(host, 5); }
97 /^Native / { if (host != "") next; else host = $4; }
98 /^[ ]*=== [^ ]+ tests ===/ {
99 if (lang == "") lang = " "$2" "; else lang = " ";
101 /--disable-haifa/ { prefix="haifa-disabled "; }
102 /--enable-haifa/ { prefix="haifa-enabled "; }
103 $2 == "version" { save = $0; $1 = ""; $2 = ""; version = $0; gsub(/^ */, "", version); gsub(/\r$/, "", version); $0 = save; }
104 /\===.*Summary/ { print ""; print; blanks=1; }
105 /tests ===/ || /^(Target|Host|Native)/ || $2 == "version" { print; blanks=1; }
106 /^(XPASS|FAIL|# of )/ { print; }
107 # dumpall != 0 && /^X?(PASS|FAIL|UNTESTED)|^testcase/ { dumpall=0; }
108 # dumpall != 0 { print; }
109 # /^FAIL/ { dumpall=1; }
110 /^$/ && blanks>0 { print; --blanks; }
111 END { if (lang != "") {
112 print "";
113 print "Compiler version: " prefix version lang;
114 print "Platform: " host;
115 print configflags;
116 '${BOOT_CFLAGS+'print "BOOT_CFLAGS='"${BOOT_CFLAGS}"'";'}'
117 if (boot_cflags != 0) print boot_cflags;
118 '${append_logs+" system(\"cat $append_logs\"); "}'
119 print "EOF";
120 print "Mail -s \"Results for " prefix version lang "testsuite on " host "\" '"${mailto}"' &&";
122 { next; }
123 ' ./config.status $files | sed "s/\([\`\$\\\\]\)/\\\\\\1/g" &&
124 if $move; then
125 for file in $files `ls -1 $files | sed s/sum$/log/`; do
126 [ -f $file ] && echo "mv `pwd`/$file `pwd`/$file.sent &&"
127 done
128 fi &&
129 echo true
130 exit 0