From: Sander Roobol Date: Mon, 21 Oct 2002 09:04:56 +0000 (+0000) Subject: The results of each test should go on a single line X-Git-Tag: php-4.3.0pre2~239 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=988c3557208b88f18738de79534a79021db4bab9;p=php The results of each test should go on a single line --- diff --git a/run-tests.php b/run-tests.php index 9b43f72811..9e8d9384a0 100755 --- a/run-tests.php +++ b/run-tests.php @@ -434,10 +434,12 @@ TEST $file $output = `$php $tmp_skipif`; @unlink($tmp_skipif); if (ereg("^skip", trim($output))){ - echo "SKIP $tested\n"; + echo "SKIP $tested"; $reason = (ereg("^skip\s*(.+)$", trim($output))) ? ereg_replace("^skip\s*(.+)$", "\\1", trim($output)) : FALSE; if ($reason) { - echo "\treason: $reason\n"; + echo " (reason: $reason)\n"; + } else { + echo "\n"; } return 'SKIPPED'; }