test_summary (version): remove carriage return that gawk inserts in the version string for some reason

* test_summary (version): remove carriage return that gawk inserts
	in the version string for some reason

From-SVN: r24552
This commit is contained in:
Alexandre Oliva 1999-01-07 00:17:40 +00:00 committed by Alexandre Oliva
parent 1bf27b5bf3
commit 692c4bf5c6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
1999-01-07 Alexandre Oliva <oliva@dcc.unicamp.br>
* test_summary (version): remove carriage return that gawk inserts
in the version string for some reason
1998-11-30 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* egcs_update: Only touch files that already exist.

View File

@ -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; }