mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-29 22:04:15 +01:00
Also test backwards compat strerror() function
This commit is contained in:
parent
6c33a16dae
commit
52a555cd7d
@ -12,8 +12,18 @@ void error_strerror( int code, char *result_str )
|
|||||||
{
|
{
|
||||||
char buf[500];
|
char buf[500];
|
||||||
|
|
||||||
|
memset( buf, 0, sizeof( buf ) );
|
||||||
|
|
||||||
polarssl_strerror( code, buf, 500 );
|
polarssl_strerror( code, buf, 500 );
|
||||||
|
|
||||||
TEST_ASSERT( strcmp( buf, result_str ) == 0 );
|
TEST_ASSERT( strcmp( buf, result_str ) == 0 );
|
||||||
|
|
||||||
|
#if defined(POLARSSL_ERROR_STRERROR_BC)
|
||||||
|
memset( buf, 0, sizeof( buf ) );
|
||||||
|
|
||||||
|
error_strerror( code, buf, 500 );
|
||||||
|
|
||||||
|
TEST_ASSERT( strcmp( buf, result_str ) == 0 );
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
Loading…
Reference in New Issue
Block a user