This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: test_results script and gcc-2.95
- To: Andreas Jaeger <aj at arthur dot rhein-neckar dot de>
- Subject: Re: test_results script and gcc-2.95
- From: Alexandre Oliva <oliva at dcc dot unicamp dot br>
- Date: 12 Jun 1999 19:16:02 -0300
- Cc: egcs-patches at egcs dot cygnus dot com
- References: <u8909pamda.fsf@arthur.rhein-neckar.de>
On Jun 12, 1999, Andreas Jaeger <aj@arthur.rhein-neckar.de> wrote:
> the script contrib/test_results works AFAIK only with egcs correctly
> but not with gcc-2.95.
> Could you check what's the right way to fix this (I don't know if
> checking for gcc/ss should be deleted)?
In fact, the gcc/ss check was legacy from my personal reporting
script, and assumed certain directory names that may not hold for
other tests. I'm installing the attached patch to the trunk and to
the release branch.
--
Alexandre Oliva http://www.dcc.unicamp.br/~oliva IC-Unicamp, Bra[sz]il
{oliva,Alexandre.Oliva}@dcc.unicamp.br aoliva@{acm.org,computer.org}
oliva@{gnu.org,kaffe.org,{egcs,sourceware}.cygnus.com,samba.org}
*** E-mail about software projects will be forwarded to mailing lists
Index: contrib/ChangeLog
from Alexandre Oliva <oliva@dcc.unicamp.br>
* test_summary: Set default mail-address and version for egcs
instead of relying on unpredictable pathnames.
Reported by Andreas Jaeger <aj@arthur.rhein-neckar.de>
Index: contrib/test_summary
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/contrib/test_summary,v
retrieving revision 1.10
diff -u -r1.10 test_summary
--- contrib/test_summary 1999/01/07 00:17:40 1.10
+++ contrib/test_summary 1999/06/12 22:14:12
@@ -85,6 +85,8 @@
$AWK '
BEGIN {
lang="";
+ address="egcs-testresults@egcs.cygnus.com";
+ version="egcs";
print "cat <<\EOF |";
'${prepend_logs+" system(\"cat $prepend_logs\"); "}'
}
@@ -94,16 +96,6 @@
/^Native / { if (host != "") next; else host = $4; }
/^[ ]*=== [^ ]+ 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 "; }