aboutsummaryrefslogtreecommitdiff
path: root/contrib/test_summary
diff options
context:
space:
mode:
authorno-author <no-author@gcc.gnu.org>2001-02-19 14:33:58 +0000
committerno-author <no-author@gcc.gnu.org>2001-02-19 14:33:58 +0000
commit81f958577f9cf907792e64814deee22eb8d4f280 (patch)
treeea0c47499a7187f73d7d489a24d19ad5fc42988d /contrib/test_summary
parentf9555ee958bd43d88e090dd8d971cbc8ac9e78a1 (diff)
This commit was manufactured by cvs2svn to create taggcc-2_95_3-test4
'gcc-2_95_3-test4'. git-svn-id: https://gcc.gnu.org/svn/gcc/tags/gcc-2_95_3-test4@39882 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib/test_summary')
-rwxr-xr-xcontrib/test_summary18
1 files changed, 5 insertions, 13 deletions
diff --git a/contrib/test_summary b/contrib/test_summary
index fd76292682f..03fed36fdaf 100755
--- a/contrib/test_summary
+++ b/contrib/test_summary
@@ -1,6 +1,6 @@
#! /bin/sh
-# (C) 1998 Free Software Foundation
+# (C) 1998-1999 Free Software Foundation
# Originally by Alexandre Oliva <oliva@dcc.unicamp.br>
# This script is Free Software, and it can be copied, distributed and
@@ -9,8 +9,8 @@
# This script processes *.{sum,log} files, producing a shell-script
# that sends e-mail to the appropriate lists and renames files to
-# *.sent. It currently handles gcc and egcs, but it should be quite
-# easy to modify it to handle other packages and its mailing lists.
+# *.sent. It currently handles only gcc, but it should be quite easy
+# to modify it to handle other packages and its mailing lists.
# The scripts assumes it is run in the root directory of the build
# tree, and it will include all .sum files it finds in the mail
@@ -85,6 +85,8 @@ if $forcemail || $anychange; then :; else mailto=nobody; fi &&
$AWK '
BEGIN {
lang="";
+ address="gcc-testresults@gcc.gnu.org";
+ version="gcc";
print "cat <<\EOF |";
'${prepend_logs+" system(\"cat $prepend_logs\"); "}'
}
@@ -95,16 +97,6 @@ $1 ~ /\/configure$/ { $1 = "configure flags:"; configflags = $0 }
/^[ ]*=== [^ ]+ tests ===/ {
if (lang == "") lang = " "$2" "; else lang = " ";
}
-/\/ss(\/|c? )/ {
- program="ss";
- if (lang == " ") address="nobody";
- else if (lang == " gcc ") address="gcc2@cygnus.com";
- else address="g++@cygnus.com";
-}
-/\/egcsh?((-[^ ]*)?\/|c?[ -])/ {
- address="egcs-testresults@egcs.cygnus.com";
- if (version == 0) version="egcs";
-}
/--disable-haifa/ { prefix="haifa-disabled "; }
/--enable-haifa/ { prefix="haifa-enabled "; }
$2 == "version" { save = $0; $1 = ""; $2 = ""; version = $0; gsub(/^ */, "", version); gsub(/\r$/, "", version); $0 = save; }