OSDN Git Service

* test_summary: If Target is `unix{*}', append the Target variants
authoroliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 3 Jul 1999 07:50:45 +0000 (07:50 +0000)
committeroliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 3 Jul 1999 07:50:45 +0000 (07:50 +0000)
to Host.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27932 138bc75d-0d04-0410-961f-82ee72b054a4

contrib/ChangeLog
contrib/test_summary

index 3ced556..1ebc18d 100644 (file)
@@ -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
index db1a8b6..8b80c76 100755 (executable)
@@ -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 = " ";