mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-06-05 21:15:09 +00:00
25c1750beb
Include `"test_common.h"` as the first thing in C files, and `<test/build_info.h>` as the first thing in header files. This requires moving `<test/test_common.h>` to its intended location `"test_common.h"`. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
27 lines
655 B
C
27 lines
655 B
C
/*
|
|
* Helper functions for tests that use any PSA API.
|
|
*/
|
|
/*
|
|
* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef PSA_HELPERS_H
|
|
#define PSA_HELPERS_H
|
|
|
|
#include "build_info.h"
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_SPM)
|
|
#include "spm/psa_defs.h"
|
|
#endif
|
|
|
|
/** Evaluate an expression and fail the test case if it returns an error.
|
|
*
|
|
* \param expr The expression to evaluate. This is typically a call
|
|
* to a \c psa_xxx function that returns a value of type
|
|
* #psa_status_t.
|
|
*/
|
|
#define PSA_ASSERT(expr) TEST_EQUAL((expr), PSA_SUCCESS)
|
|
|
|
#endif /* PSA_HELPERS_H */
|