mbedtls/tests/suites/test_suite_error.function
Paul Bakker dbd443dca6 Adapted .function files and .data files to new test framework
Changes include:
 - Integers marked with '#' in the .function files.
 - Strings should have "" in .data files.
 - String comparison instead of preprocessor-like replace for e.g. '=='
 - Params and variables cannot have the same name in .function files
2013-08-16 13:51:37 +02:00

18 lines
288 B
Text

BEGIN_HEADER
#include <polarssl/error.h>
END_HEADER
BEGIN_DEPENDENCIES
depends_on:POLARSSL_ERROR_C
END_DEPENDENCIES
BEGIN_CASE
error_strerror:#code:result_str
{
char buf[500];
error_strerror( {code}, buf, 500 );
TEST_ASSERT( strcmp( buf, {result_str} ) == 0 );
}
END_CASE