We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 867f5f2 commit ded8625Copy full SHA for ded8625
.evergreen/execute-tests.sh
@@ -19,17 +19,14 @@ EXIT_CODE=0
19
set +e
20
21
while [ $ATTEMPT -le $MAX_ATTEMPTS ]; do
22
- echo "Running test attempt $ATTEMPT"
23
bash ${ROOT_DIR}/${DIR}/run.sh
24
25
EXIT_CODE=$?
26
27
- echo "Test attempt $ATTEMPT had exit code $EXIT_CODE"
28
-
29
if [ $EXIT_CODE -eq 0 ]; then
30
break
31
else
32
- echo "Tests failed with exit code $EXIT_CODE on attempt $ATTEMPT of $MAX_ATTEMPTS..."
+ echo "Tests failed on attempt $ATTEMPT of $MAX_ATTEMPTS..."
33
((ATTEMPT++))
34
fi
35
done
0 commit comments