From 988c3557208b88f18738de79534a79021db4bab9 Mon Sep 17 00:00:00 2001 From: Sander Roobol Date: Mon, 21 Oct 2002 09:04:56 +0000 Subject: [PATCH] The results of each test should go on a single line --- run-tests.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/run-tests.php b/run-tests.php index 9b43f728115..9e8d9384a01 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'; }