azure: tests: reset FAILED status if flaky re-run succeeds

While we already do have logic to re-run flaky tests, the FAILED
variable currently does not get reset to "0". As a result, successful
reruns will still cause the test to be registered as failed.

Fix this by resetting the variable accordingly.
This commit is contained in:
Patrick Steinhardt
2020-02-04 12:15:56 +01:00
parent b33ad76473
commit c51bd2f20f

View File

@@ -54,6 +54,7 @@ run_test() {
CLAR_SUMMARY="${BUILD_DIR}/results_${1}.xml" ctest -V -R "^${1}$" || RETURN_CODE=$? && true
if [ "$RETURN_CODE" -eq 0 ]; then
FAILED=0
break
fi