diff options
author | oliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-07 00:17:40 +0000 |
---|---|---|
committer | oliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-07 00:17:40 +0000 |
commit | 6a7bfb42733d6f2c671292b3a5bbab97fbe9467e (patch) | |
tree | cc4f55d530c8f6550d9e3d8a33ca6104cb2c5ee3 /contrib/test_summary | |
parent | 88a9a0dede51c7daf8193650da8c601f6f05cb9a (diff) | |
download | gcc-6a7bfb42733d6f2c671292b3a5bbab97fbe9467e.tar.gz |
* test_summary (version): remove carriage return that gawk inserts
in the version string for some reason
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24552 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib/test_summary')
-rwxr-xr-x | contrib/test_summary | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/test_summary b/contrib/test_summary index 5a28ddcaafe..fd76292682f 100755 --- a/contrib/test_summary +++ b/contrib/test_summary @@ -107,7 +107,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; } +$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; } |