Appveyour fix paths (#379)

This commit is contained in:
Oleg Moiseenko
2019-08-30 13:55:35 +03:00
committed by GitHub
parent bd7c1ccf4b
commit 4433f8982c
2 changed files with 10 additions and 6 deletions

View File

@@ -58,7 +58,13 @@ int ExecuteCryptoTests(bool verbose) {
res = mbedtls_entropy_self_test(verbose);
if (res) TestFail = true;
res = mbedtls_timing_self_test(verbose);
// retry for CI (when resources too low)
for (int i = 0; i < 3; i++) {
res = mbedtls_timing_self_test(verbose);
if (!res)
break;
PrintAndLogEx(WARNING, "Repeat timing test %d", i + 1);
}
if (res) TestFail = true;
res = mbedtls_ctr_drbg_self_test(verbose);