Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
James Lowden
OpenLDAP
Commits
e1d6e218
Commit
e1d6e218
authored
Apr 21, 2021
by
Ondřej Kuzník
Committed by
Quanah Gibson-Mount
May 10, 2021
Browse files
ITS#6207 Log timings for lloadd tests
parent
60fac4f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/scripts/lloadd-all
View file @
e1d6e218
...
...
@@ -60,12 +60,15 @@ EOF
BCMD
=
`
basename
$CMD
`
if
[
-x
"
$CMD
"
]
;
then
echo
">>>>> Starting
${
TB
}
$BCMD
${
TN
}
for
$BACKEND
..."
START
=
`
date
+%s
`
$CMD
RC
=
$?
END
=
`
date
+%s
`
if
test
$RC
-eq
0
;
then
echo
">>>>>
$BCMD
completed
${
TB
}
OK
${
TN
}
for
$BACKEND
."
echo
">>>>>
$BCMD
completed
${
TB
}
OK
${
TN
}
for
$BACKEND
after
$((
$END
-
$START
))
seconds
."
else
echo
">>>>>
$BCMD
${
TB
}
failed
${
TN
}
for
$BACKEND
"
echo
">>>>>
$BCMD
${
TB
}
failed
${
TN
}
for
$BACKEND
after
$((
$END
-
$START
))
seconds
"
FAILCOUNT
=
`
expr
$FAILCOUNT
+ 1
`
if
[
-n
"
$NOEXIT
"
]
;
then
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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