mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 17:58:18 +00:00
Auto add 'exit' label in every test function. Failed assert now goes there
This commit is contained in:
parent
4d0cfe80ea
commit
318d0fe844
2 changed files with 8 additions and 2 deletions
|
@ -86,7 +86,7 @@ while($test_cases =~ /\/\* BEGIN_CASE *([\w:]*) \*\/\n(.*?)\n\/\* END_CASE \*\//
|
||||||
{
|
{
|
||||||
die "Test function does not have 'void' as return type\n";
|
die "Test function does not have 'void' as return type\n";
|
||||||
}
|
}
|
||||||
if ($function_decl !~ /^void (\w+)\(\s*(.*?)\s*\)\s*{(.*?)}/ms)
|
if ($function_decl !~ /^void (\w+)\(\s*(.*?)\s*\)\s*{(.*)}/ms)
|
||||||
{
|
{
|
||||||
die "Function declaration not in expected format\n";
|
die "Function declaration not in expected format\n";
|
||||||
}
|
}
|
||||||
|
@ -104,6 +104,12 @@ while($test_cases =~ /\/\* BEGIN_CASE *([\w:]*) \*\/\n(.*?)\n\/\* END_CASE \*\//
|
||||||
|
|
||||||
$function_decl =~ s/^void /void test_suite_/;
|
$function_decl =~ s/^void /void test_suite_/;
|
||||||
|
|
||||||
|
# Add exit label if not present
|
||||||
|
if ($function_decl !~ /^exit:$/m)
|
||||||
|
{
|
||||||
|
$function_decl =~ s/}\s*$/\nexit:\n return;\n}/;
|
||||||
|
}
|
||||||
|
|
||||||
if ($function_deps =~ /^depends_on:/)
|
if ($function_deps =~ /^depends_on:/)
|
||||||
{
|
{
|
||||||
( $function_deps ) = $function_deps =~ /^depends_on:(.*)$/;
|
( $function_deps ) = $function_deps =~ /^depends_on:(.*)$/;
|
||||||
|
|
|
@ -29,7 +29,7 @@ static int test_assert( int correct, const char *test )
|
||||||
|
|
||||||
#define TEST_ASSERT( TEST ) \
|
#define TEST_ASSERT( TEST ) \
|
||||||
do { test_assert( (TEST) ? 1 : 0, #TEST ); \
|
do { test_assert( (TEST) ? 1 : 0, #TEST ); \
|
||||||
if( test_errors) return; \
|
if( test_errors) goto exit; \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
int verify_string( char **str )
|
int verify_string( char **str )
|
||||||
|
|
Loading…
Reference in a new issue