Index: tests.php =================================================================== --- tests.php (revision 294764) +++ tests.php (working copy) @@ -33,7 +33,9 @@ $test_dir = $path . '/tests/AllTests.php'; if (file_exists($test_dir)) { - $cmd = 'cd ' . $path . ' && php ' . $test_dir . ' >> ' . $output_path; + $cmd = 'cd ' . $path; + $cmd .= ' && echo "php '. $test_dir . '" >> ' . $output_path; + $cmd .= ' && php ' . $test_dir . ' >> ' . $output_path; exec($cmd); } } @@ -42,7 +44,9 @@ $test_dir = $path . '/tests/'; if (file_exists($test_dir)) { - $cmd = 'cd ' . $path . ' && pear run-tests -r ' . $test_dir . ' >> ' . $output_path; + $cmd = 'cd ' . $path; + $cmd .= ' && echo "pear run-tests -r ' . $test_dir . '" >> ' . $output_path; + $cmd .= ' && pear run-tests -r ' . $test_dir . ' >> ' . $output_path; exec($cmd); } }