Extend test retry (#1495)
This commit is contained in:
parent
9324e8ee6c
commit
331433245a
1 changed files with 4 additions and 4 deletions
|
|
@ -44,13 +44,13 @@ run_tests() {
|
||||||
TIMEOUT_TIME_ARG=""
|
TIMEOUT_TIME_ARG=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$(date +%s)" -lt 1545350400 ]; then
|
if [ "$(date +%s)" -lt 1555718400 ]; then
|
||||||
tries=(1 2 3 4 5 6 7 8 9)
|
tries=(_initial_ 1 2 3 4 5 6 7 8 9)
|
||||||
else
|
else
|
||||||
tries=()
|
tries=(_initial_)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for try in _initial_ "${tries[@]}"; do
|
for try in "${tries[@]}"; do
|
||||||
if [ "${try}" != '_initial_' ]; then
|
if [ "${try}" != '_initial_' ]; then
|
||||||
echo "core_test failed: ${core_test_res}, retrying (try=${try})"
|
echo "core_test failed: ${core_test_res}, retrying (try=${try})"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue