Drop POLARSSL_ERROR_STRERROR_BC

This commit is contained in:
Manuel Pégourié-Gonnard 2015-03-11 10:59:38 +00:00
parent fc51f40a1a
commit f9c1387b9d
7 changed files with 1 additions and 55 deletions

View file

@ -17,13 +17,5 @@ void error_strerror( int code, char *result_str )
polarssl_strerror( code, buf, 500 );
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 */