From: Hannes Magnusson Date: Wed, 31 Aug 2011 10:09:54 +0000 (+0000) Subject: Remove annoying extra newline on XFAIL summaries X-Git-Tag: php-5.3.9RC1~314 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84fc76e94c4cec08ecb23a1572d4eba75d931b03;p=php Remove annoying extra newline on XFAIL summaries and sync text to trunk --- diff --git a/run-tests.php b/run-tests.php index 4bd1546118..ae65a43e65 100755 --- a/run-tests.php +++ b/run-tests.php @@ -1948,7 +1948,7 @@ COMMAND $cmd if (!$passed) { if (isset($section_text['XFAIL'])) { $restype[] = 'XFAIL'; - $info = ' XFAIL REASON: ' . $section_text['XFAIL']; + $info = ' XFAIL REASON: ' . rtrim($section_text['XFAIL']); } else { $restype[] = 'FAIL'; }