test_summary: Display section breaks for each entry in a multilibbed target's output.
authorRobert Lipe <robertl@dgii.com>
Sat, 23 May 1998 22:24:55 +0000 (22:24 +0000)
committerJeff Law <law@gcc.gnu.org>
Sat, 23 May 1998 22:24:55 +0000 (16:24 -0600)
        * test_summary: Display section breaks for each entry
        in a multilibbed target's output.

From-SVN: r19980

gcc/ChangeLog
gcc/test_summary

index 1d5d766a6588081c78b067c7efa75021e1d55dd1..e8160bb70ee5f5affcf593aaadcca621a45f9cfc 100644 (file)
@@ -1,3 +1,8 @@
+Sat May 23 23:23:35 1998   Robert Lipe  <robertl@dgii.com>
+
+       * test_summary: Display section breaks for each entry
+       in a multilibbed target's output.
+
 1998-05-23  Richard Henderson  <rth@cygnus.com>
 
        * expr.c (expand_expr): For {BITFIELD,COMPONENT,ARRAY}_REF, if the
index bc4a538ab617c104858b8526e9ac8f91eeabefc7..23e3d7e7d822286072f5cdd87c25e03662878e42 100644 (file)
@@ -69,6 +69,7 @@ BEGIN {
   print "cat <<EOF |";
 }
 $1 ~ /\/configure$/ { $1 = "configure flags:"; configflags = $0 }
+/^Running target / { print ""; print; }
 /^Target / { if (host != "") next; else host = $3; }
 /^Native / { if (host != "") next; else host = $4; }
 /^[    ]*=== [^        ]+ tests ===/ {
@@ -87,7 +88,7 @@ $1 ~ /\/configure$/ { $1 = "configure flags:"; configflags = $0 }
 /--disable-haifa/ { prefix="haifa-disabled "; }
 /--enable-haifa/ { prefix="haifa-enabled "; }
 $2 == "version" { save = $0; $1 = ""; $2 = ""; version = $0; gsub(/^ */, "", version); $0 = save; }
-/Summary ===/ { print ""; print; blanks=1; }
+/\===.*Summary/ { print ""; print; blanks=1; }
 /tests ===/ || /^(Target|Host|Native)/ || $2 == "version" { print; blanks=1; }
 /^(XPASS|FAIL|# of )/ { print; }
 # dumpall != 0 && /^X?(PASS|FAIL|UNTESTED)|^testcase/ { dumpall=0; }