This commit is contained in:
iceman1001 2018-02-21 17:56:09 +01:00
commit 65a4253e7e
4 changed files with 8 additions and 12 deletions

View file

@ -54,11 +54,11 @@ int ExecuteCryptoTests(bool verbose) {
res = exec_crypto_test(verbose);
if (res) TestFail = true;
PrintAndLog("\n--------------------------");
PrintAndLogEx(NORMAL, "\n--------------------------");
if (TestFail)
PrintAndLog("Test(s) [ERROR].");
PrintAndLogEx(ERR, "Test(s) [ERROR].");
else
PrintAndLog("Tests [OK].");
PrintAndLogEx(SUCCESS, "Tests [OK].");
return TestFail;
}