summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2011-08-31 10:09:54 +0000
committerHannes Magnusson <bjori@php.net>2011-08-31 10:09:54 +0000
commit84fc76e94c4cec08ecb23a1572d4eba75d931b03 (patch)
tree91e083a1cc43e28a41bcc534bc14d7bc7d91f941 /run-tests.php
parent9bedfa520b38c92d1370b19845d90d0f5275f1c5 (diff)
downloadphp-git-84fc76e94c4cec08ecb23a1572d4eba75d931b03.tar.gz
Remove annoying extra newline on XFAIL summaries
and sync text to trunk
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php2
1 files changed, 1 insertions, 1 deletions
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';
}