From 506d4ef6a187164128f403497ac24fcc11a08d84 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20J=C3=B6nsson?= Date: Sun, 24 Feb 2002 20:45:15 +0000 Subject: [PATCH] test_summary: Additional to XPASS and FAIL... * test_summary: Additional to XPASS and FAIL, add UNRESOLVED, WARNING and ERROR output from the *.sum files. From-SVN: r50010 --- contrib/ChangeLog | 5 +++++ contrib/test_summary | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 0d824bc49202..c6fedf91f702 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,8 @@ +2002-02-24 Christian Jönsson + + * test_summary: Additional to XPASS and FAIL, add UNRESOLVED, + WARNING and ERROR output from the *.sum files. + 2002-01-26 Gerald Pfeifer * gennews (files): Replace gcc-2.95/gcc-2.95.html, diff --git a/contrib/test_summary b/contrib/test_summary index a1bf474d7ebb..506695499597 100755 --- a/contrib/test_summary +++ b/contrib/test_summary @@ -115,7 +115,7 @@ $1 ~ /\/configure$/ { $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; } -/^(XPASS|FAIL|# of )/ { print; } +/^(XPASS|FAIL|UNRESOLVED|WARNING|ERROR|# of )/ { print; } # dumpall != 0 && /^X?(PASS|FAIL|UNTESTED)|^testcase/ { dumpall=0; } # dumpall != 0 { print; } # /^FAIL/ { dumpall=1; } -- 2.43.5