dbd443dca6
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
18 lines
288 B
Text
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
|