core/scripts/run-tests.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/core/scripts/run-tests.sh b/core/scripts/run-tests.sh index 2395a84..cd557f5 100755 --- a/core/scripts/run-tests.sh +++ b/core/scripts/run-tests.sh @@ -139,7 +139,11 @@ All arguments are long options. --color Output text format results with color highlighting. - --verbose Output detailed assertion messages in addition to summary. + --print-assertions + + Output detailed assertion messages in addition to summary. + + --verbose Capture page requests and log them to files/simpletest/verbose. --keep-results @@ -188,6 +192,7 @@ function simpletest_script_parse_args() { 'class' => FALSE, 'file' => FALSE, 'color' => FALSE, + 'print-assertions' => FALSE, 'verbose' => FALSE, 'keep-results' => FALSE, 'test_names' => array(), @@ -704,7 +709,7 @@ function simpletest_script_reporter_timer_stop() { function simpletest_script_reporter_display_results() { global $args, $test_ids, $results_map; - if ($args['verbose']) { + if ($args['print-assertions']) { // Report results. echo "Detailed test results\n"; echo "---------------------\n";