diff options
author | Alexandre Oliva <oliva@dcc.unicamp.br> | 1999-07-03 07:50:45 +0000 |
---|---|---|
committer | Alexandre Oliva <oliva@gcc.gnu.org> | 1999-07-03 07:50:45 +0000 |
commit | 069550beda71727a01d7eed94cca40e7380d9a53 (patch) | |
tree | 5d523109a3e764546a0a5fd92f35077da3a2bf41 | |
parent | 30c6210a1abb79b6f56e7bed7340cae28a0e7465 (diff) | |
download | gcc-069550beda71727a01d7eed94cca40e7380d9a53.zip gcc-069550beda71727a01d7eed94cca40e7380d9a53.tar.gz gcc-069550beda71727a01d7eed94cca40e7380d9a53.tar.bz2 |
test_summary: If Target is `unix{*}', append the Target variants to Host.
* test_summary: If Target is `unix{*}', append the Target variants
to Host.
From-SVN: r27932
-rw-r--r-- | contrib/ChangeLog | 5 | ||||
-rwxr-xr-x | contrib/test_summary | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 3ced556..1ebc18d 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,8 @@ +1999-07-03 Alexandre Oliva <oliva@dcc.unicamp.br> + + * test_summary: If Target is `unix{*}', append the Target variants + to Host. + 1999-06-12 Alexandre Oliva <oliva@dcc.unicamp.br> * test_summary: Set default mail-address and version for egcs diff --git a/contrib/test_summary b/contrib/test_summary index db1a8b6..8b80c76 100755 --- a/contrib/test_summary +++ b/contrib/test_summary @@ -93,6 +93,7 @@ BEGIN { $1 ~ /\/configure$/ { $1 = "configure flags:"; configflags = $0 } /^Running target / { print ""; print; } /^Target / { if (host != "") next; else host = $3; } +/^Host / && host ~ /^unix{.*}$/ { host = $3 " " substr(host, 5); } /^Native / { if (host != "") next; else host = $4; } /^[ ]*=== [^ ]+ tests ===/ { if (lang == "") lang = " "$2" "; else lang = " "; |