Run PKCS#5 selftest in test suites

This commit is contained in:
Paul Bakker 2016-07-19 14:54:57 +01:00 committed by Simon Butcher
parent 4400ecc9fb
commit 81c60910e1
2 changed files with 10 additions and 0 deletions

View file

@ -78,3 +78,10 @@ exit:
mbedtls_free( my_out );
}
/* END_CASE */
/* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
void pkcs5_selftest( )
{
TEST_ASSERT( mbedtls_pkcs5_self_test( 0 ) == 0 );
}
/* END_CASE */