diff options
author | Robert Lipe <robertl@dgii.com> | 1998-05-23 22:24:55 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-05-23 16:24:55 -0600 |
commit | a8c24967fc6fd04242c33a3c8d1cf2a7e8bfecd4 (patch) | |
tree | 28bf7fef0f0d236ddaea5dfcef53c4f61c04d31e /gcc | |
parent | 6e4cdba0042e9dd67a5394fe729b60a4d835f9ca (diff) | |
download | gcc-a8c24967fc6fd04242c33a3c8d1cf2a7e8bfecd4.zip gcc-a8c24967fc6fd04242c33a3c8d1cf2a7e8bfecd4.tar.gz gcc-a8c24967fc6fd04242c33a3c8d1cf2a7e8bfecd4.tar.bz2 |
test_summary: Display section breaks for each entry in a multilibbed target's output.
* test_summary: Display section breaks for each entry
in a multilibbed target's output.
From-SVN: r19980
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/test_summary | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1d5d766..e8160bb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/test_summary b/gcc/test_summary index bc4a538..23e3d7e 100644 --- a/gcc/test_summary +++ b/gcc/test_summary @@ -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; } |