2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_HEADER */
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/error.h"
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_HEADER */
|
2011-05-09 18:17:09 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_DEPENDENCIES
|
2015-04-08 12:49:31 +02:00
|
|
|
* depends_on:MBEDTLS_ERROR_C
|
2013-08-20 11:48:36 +02:00
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
2011-05-26 15:16:06 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2023-01-11 14:50:10 +01:00
|
|
|
void error_strerror(int code, char *result_str)
|
2011-05-09 18:17:09 +02:00
|
|
|
{
|
|
|
|
char buf[500];
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
memset(buf, 0, sizeof(buf));
|
2014-03-27 18:49:32 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_strerror(code, buf, 500);
|
2011-05-09 18:17:09 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(strcmp(buf, result_str) == 0);
|
2011-05-09 18:17:09 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|