diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2019-08-16 14:06:28 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2019-08-16 14:06:28 +0200 |
commit | e3fdc13c24e42d26eaa861f208d85635a11be048 (patch) | |
tree | 98e77f9d93b83edc2a8d936ac1a070b1265b0a0f /contrib | |
parent | 09cc060f352b9617a6a607220ee25ab8cf53b879 (diff) | |
download | gcc-e3fdc13c24e42d26eaa861f208d85635a11be048.zip gcc-e3fdc13c24e42d26eaa861f208d85635a11be048.tar.gz gcc-e3fdc13c24e42d26eaa861f208d85635a11be048.tar.bz2 |
test_summary: Do not escape "=".
* test_summary: Do not escape "=".
From-SVN: r274567
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/test_summary | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 4fa93d5..039dc25 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2019-08-16 Uros Bizjak <ubizjak@gmail.com> + + * test_summary: Do not escape "=". + 2019-02-22 Release Manager * GCC 8.3.0 released. diff --git a/contrib/test_summary b/contrib/test_summary index 3560a64..5760b05 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 ""; } |