diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-04 02:06:54 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-04 02:06:54 +0000 |
commit | 85757e953dc0dcabb42785b2d6911c65a522f7da (patch) | |
tree | f9c44451a482e99334cf910873074afba53edf72 /contrib/test_summary | |
parent | 7efd6cf1ff2f91416a298b70518c94c67599e1c5 (diff) | |
download | gcc-85757e953dc0dcabb42785b2d6911c65a522f7da.tar.gz |
* test_summary: In generated script, use cat <<'EOF' not cat <<\EOF.
Elide --with-gcc-version-trigger and --norecursion from
configure flags. Remove code to report status of haifa scheduler.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34387 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib/test_summary')
-rwxr-xr-x | contrib/test_summary | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/contrib/test_summary b/contrib/test_summary index 7a621b7b55a..ad08c897566 100755 --- a/contrib/test_summary +++ b/contrib/test_summary @@ -1,6 +1,6 @@ #! /bin/sh -# (C) 1998-1999 Free Software Foundation +# (C) 1998, 1999, 2000 Free Software Foundation # Originally by Alexandre Oliva <oliva@dcc.unicamp.br> # This script is Free Software, and it can be copied, distributed and @@ -87,10 +87,14 @@ BEGIN { lang=""; address="gcc-testresults@gcc.gnu.org"; version="gcc"; - print "cat <<\EOF |"; + print "cat <<'"'"'EOF'"'"' |"; '${prepend_logs+" system(\"cat $prepend_logs\"); "}' } -$1 ~ /\/configure$/ { $1 = "configure flags:"; configflags = $0 } +$1 ~ /\/configure$/ { + $1 = "configure flags:"; configflags = $0; + gsub(/--with-gcc-version-trigger=[^ ]* /, "", configflags); + gsub(/ --norecursion/, "", configflags) +} /^Running target / { print ""; print; } /^Target / { if (host != "") next; else host = $3; } /^Host / && host ~ /^unix\{.*\}$/ { host = $3 " " substr(host, 5); } @@ -98,8 +102,6 @@ $1 ~ /\/configure$/ { $1 = "configure flags:"; configflags = $0 } /^[ ]*=== [^ ]+ tests ===/ { if (lang == "") lang = " "$2" "; else lang = " "; } -/--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; } /\===.*Summary/ { print ""; print; blanks=1; } /tests ===/ || /^(Target|Host|Native)/ || $2 == "version" { print; blanks=1; } |