Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
b43010c5
Commit
b43010c5
authored
Sep 24, 2008
by
webchick
Browse files
#312847
by moshe weitzman: Fix end time reporting in run-tests.sh.
parent
9bc36524
Changes
1
Hide whitespace changes
Inline
Side-by-side
scripts/run-tests.sh
View file @
b43010c5
...
...
@@ -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'
])
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment