From 358e588b323fa9ec29e386c5197db3d46c5303b8 Mon Sep 17 00:00:00 2001 From: TRodziewicz Date: Fri, 28 May 2021 12:58:46 +0200 Subject: [PATCH] Temporary addition of an empty assert to satisfy the compiler Signed-off-by: TRodziewicz --- tests/suites/test_suite_aes.function | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/suites/test_suite_aes.function b/tests/suites/test_suite_aes.function index 3e07c9cf9a..aa3df92fa5 100644 --- a/tests/suites/test_suite_aes.function +++ b/tests/suites/test_suite_aes.function @@ -447,6 +447,14 @@ void aes_misc_params( ) TEST_ASSERT( mbedtls_aes_crypt_ofb( &aes_ctx, 16, &size, out, in, out ) == MBEDTLS_ERR_AES_BAD_INPUT_DATA ); #endif + +/* + * The following line needs to be added to make the code compilable + * when all the conditions above will be not define in a specific + * choice of features. + */ + TEST_ASSERT( 1 ); +/* TODO: It will be removed when the whole test will be reworked */ } /* END_CASE */