From b43010c5bdccb7b898aa1c3ca8f92f98d9e03c57 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 24 Sep 2008 15:48:56 +0000 Subject: #312847 by moshe weitzman: Fix end time reporting in run-tests.sh. --- scripts/run-tests.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scripts/run-tests.sh') diff --git a/scripts/run-tests.sh b/scripts/run-tests.sh index 4418020b2..cd36aec36 100755 --- a/scripts/run-tests.sh +++ b/scripts/run-tests.sh @@ -444,6 +444,7 @@ function simpletest_script_reporter_init() { } echo "Test run started: " . format_date($_SERVER['REQUEST_TIME'], 'long') . "\n"; + timer_start('run-tests'); echo "\n"; echo "Test summary:\n"; @@ -458,7 +459,8 @@ function simpletest_script_reporter_display_results() { global $args, $test_id, $results_map; echo "\n"; - echo "Test run ended: " . format_date($_SERVER['REQUEST_TIME'], 'long') . "\n"; + $end = timer_stop('run-tests'); + echo "Test run duration: " . format_interval($end['time'] / 1000); echo "\n"; if ($args['verbose']) { -- cgit v1.2.3