Add ASSERT_FALSE macro for tests
Signed-off-by: Agathiyan Bragadeesh <agathiyan.bragadeesh2@arm.com>
This commit is contained in:
parent
db084d16ea
commit
ebb40bc336
10 changed files with 27 additions and 17 deletions
|
@ -309,7 +309,7 @@ static int exercise_signature_key(mbedtls_svc_key_id_t key,
|
|||
hash_alg = KNOWN_SUPPORTED_HASH_ALG;
|
||||
alg ^= PSA_ALG_ANY_HASH ^ hash_alg;
|
||||
#else
|
||||
TEST_ASSERT(!"No hash algorithm for hash-and-sign testing");
|
||||
ASSERT_FALSE("No hash algorithm for hash-and-sign testing");
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -438,7 +438,7 @@ int mbedtls_test_psa_setup_key_derivation_wrap(
|
|||
PSA_KEY_DERIVATION_INPUT_LABEL,
|
||||
input2, input2_length));
|
||||
} else {
|
||||
TEST_ASSERT(!"Key derivation algorithm not supported");
|
||||
ASSERT_FALSE("Key derivation algorithm not supported");
|
||||
}
|
||||
|
||||
if (capacity != SIZE_MAX) {
|
||||
|
@ -798,7 +798,7 @@ int mbedtls_test_psa_exported_key_sanity_check(
|
|||
PSA_EXPORT_PUBLIC_KEY_MAX_SIZE);
|
||||
} else {
|
||||
(void) exported;
|
||||
TEST_ASSERT(!"Sanity check not implemented for this key type");
|
||||
ASSERT_FALSE("Sanity check not implemented for this key type");
|
||||
}
|
||||
|
||||
#if defined(MBEDTLS_DES_C)
|
||||
|
@ -943,7 +943,7 @@ int mbedtls_test_psa_exercise_key(mbedtls_svc_key_id_t key,
|
|||
} else if (PSA_ALG_IS_KEY_AGREEMENT(alg)) {
|
||||
ok = exercise_key_agreement_key(key, usage, alg);
|
||||
} else {
|
||||
TEST_ASSERT(!"No code to exercise this category of algorithm");
|
||||
ASSERT_FALSE("No code to exercise this category of algorithm");
|
||||
}
|
||||
|
||||
ok = ok && exercise_export_key(key, usage);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue