From 78c13f46b3ea2f9a0ee17556d3ddc221ce9988e2 Mon Sep 17 00:00:00 2001 From: Uros Bizjak Date: Fri, 16 Aug 2019 14:03:09 +0200 Subject: [PATCH] test_summary: Do not escape "=". * test_summary: Do not escape "=". From-SVN: r274566 --- contrib/ChangeLog | 4 ++++ contrib/test_summary | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 ""; }