Merge pull request #5297 from paul-elliott-arm/test_suite_cipher_returns
Add checked return to cipher setup in Cipher tests
This commit is contained in:
commit
fe051f6aab
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ void cipher_invalid_param_unconditional( )
|
|||
(void)valid_mode; /* In some configurations this is unused */
|
||||
|
||||
mbedtls_cipher_init( &valid_ctx );
|
||||
mbedtls_cipher_setup( &valid_ctx, valid_info );
|
||||
TEST_ASSERT( mbedtls_cipher_setup( &valid_ctx, valid_info ) == 0 );
|
||||
mbedtls_cipher_init( &invalid_ctx );
|
||||
|
||||
/* mbedtls_cipher_setup() */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue