mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-09 15:10:50 +00:00
Fix typos in ECP test suite
This commit is contained in:
parent
80f71689ee
commit
807c107c3c
|
@ -16,7 +16,7 @@
|
||||||
/* BEGIN_CASE */
|
/* BEGIN_CASE */
|
||||||
void ecp_valid_param( )
|
void ecp_valid_param( )
|
||||||
{
|
{
|
||||||
TEST_VALID_PARAM( mbedtls_ecp_point_free( NULL ) );
|
TEST_VALID_PARAM( mbedtls_ecp_group_free( NULL ) );
|
||||||
TEST_VALID_PARAM( mbedtls_ecp_keypair_free( NULL ) );
|
TEST_VALID_PARAM( mbedtls_ecp_keypair_free( NULL ) );
|
||||||
TEST_VALID_PARAM( mbedtls_ecp_point_free( NULL ) );
|
TEST_VALID_PARAM( mbedtls_ecp_point_free( NULL ) );
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ void ecp_invalid_param( )
|
||||||
|
|
||||||
TEST_INVALID_PARAM( mbedtls_ecp_point_init( NULL ) );
|
TEST_INVALID_PARAM( mbedtls_ecp_point_init( NULL ) );
|
||||||
TEST_INVALID_PARAM( mbedtls_ecp_keypair_init( NULL ) );
|
TEST_INVALID_PARAM( mbedtls_ecp_keypair_init( NULL ) );
|
||||||
TEST_INVALID_PARAM( mbedtls_ecp_point_init( NULL ) );
|
TEST_INVALID_PARAM( mbedtls_ecp_group_init( NULL ) );
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
||||||
TEST_INVALID_PARAM( mbedtls_ecp_restart_init( NULL ) );
|
TEST_INVALID_PARAM( mbedtls_ecp_restart_init( NULL ) );
|
||||||
|
|
Loading…
Reference in a new issue