3
0
mirror of https://github.com/rvalitov/zabbix-php-fpm.git synced 2023-11-05 03:30:27 +01:00

[fix] long run tests

This commit is contained in:
Ramil Valitov 2020-09-21 14:54:08 +03:00
parent 92222fb293
commit 44f3f5d567
No known key found for this signature in database
GPG Key ID: 2AB186DABDFE1914

View File

@ -157,7 +157,7 @@ function printElapsedTime() {
function assertExecutionTime() {
local MAX_TIME
MAX_TIME=$(echo "$ZABBIX_TIMEOUT * 1000" | bc)
assertTrue "The script worked for too long" "[ $ELAPSED_TIME -lt $MAX_TIME ]"
assertTrue "The script worked for too long: $ELAPSED_TIME ms, allowed $MAX_TIME ms" "[ $ELAPSED_TIME -lt $MAX_TIME ]"
}
function getPHPVersion() {
@ -938,20 +938,20 @@ testZabbixDiscoverManyPools() {
testDiscoverScriptManyPoolsRunDuration() {
MAX_RUNS=5
for ((c = 1; c <= MAX_RUNS; c++)); do
StartTimer
printAction "Run #$c..."
testDiscoverScriptRunDuration
done
printElapsedTime
printSuccess "${FUNCNAME[0]}"
}
testZabbixDiscoverManyPoolsRunDuration() {
MAX_RUNS=5
for ((c = 1; c <= MAX_RUNS; c++)); do
StartTimer
printAction "Run #$c..."
testZabbixDiscoverRunDuration
done
printElapsedTime
printSuccess "${FUNCNAME[0]}"
}