OSDN Git Service

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