From: Uros Bizjak Date: Fri, 16 Aug 2019 12:03:09 +0000 (+0200) Subject: test_summary: Do not escape "=". X-Git-Tag: releases/gcc-9.3.0~718 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78c13f46b3ea2f9a0ee17556d3ddc221ce9988e2;p=thirdparty%2Fgcc.git test_summary: Do not escape "=". * test_summary: Do not escape "=". From-SVN: r274566 --- diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 8565be188d90..c9b9e26ee578 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2019-08-16 Uros Bizjak + + * test_summary: Do not escape "=". + 2019-08-12 Release Manager * GCC 9.2.0 released. diff --git a/contrib/test_summary b/contrib/test_summary index 3560a64c4f19..5760b053ec27 100755 --- a/contrib/test_summary +++ b/contrib/test_summary @@ -127,7 +127,7 @@ NR == 1 { if (lang == "") lang = " "$2" "; else lang = " "; } $2 == "version" { save = $0; $1 = ""; $2 = ""; version = $0; gsub(/^ */, "", version); gsub(/\r$/, "", version); $0 = save; } -/\===.*Summary/ { print ""; print; blanks=1; } +/===.*Summary/ { print ""; print; blanks=1; } /tests ===/ || /^(Target|Host|Native)/ || $2 == "version" { print; blanks=1; } /^(XPASS|FAIL|UNRESOLVED|WARNING|ERROR|# of )/ { sub ("\r", ""); print; } /^using:/ { print ""; print; print ""; }