blob: df6e857b09d103bb040470fda7f2ea735fe66357 [file] [log] [blame]
Paul Bakker9d781402011-05-09 16:17:09 +00001BEGIN_HEADER
2#include <polarssl/error.h>
3END_HEADER
4
Paul Bakker5690efc2011-05-26 13:16:06 +00005BEGIN_DEPENDENCIES
6depends_on:POLARSSL_ERROR_C
7END_DEPENDENCIES
8
Paul Bakker9d781402011-05-09 16:17:09 +00009BEGIN_CASE
10error_strerror:code:result_str
11{
12 char buf[500];
13
14 error_strerror( {code}, buf, 500 );
15
16 TEST_ASSERT( strcmp( buf, {result_str} ) == 0 );
17}
18END_CASE