mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-25 17:25:23 +00:00
Increase readability of verbose test suite output
This commit is contained in:
parent
1b841cc9bf
commit
910f662cd7
1 changed files with 4 additions and 4 deletions
|
@ -432,24 +432,24 @@ int main(int argc, const char *argv[])
|
||||||
if( unmet_dep_count > 0 || ret == DISPATCH_UNSUPPORTED_SUITE )
|
if( unmet_dep_count > 0 || ret == DISPATCH_UNSUPPORTED_SUITE )
|
||||||
{
|
{
|
||||||
total_skipped++;
|
total_skipped++;
|
||||||
mbedtls_fprintf( stdout, "----\n" );
|
mbedtls_fprintf( stdout, "----" );
|
||||||
|
|
||||||
if( 1 == option_verbose && ret == DISPATCH_UNSUPPORTED_SUITE )
|
if( 1 == option_verbose && ret == DISPATCH_UNSUPPORTED_SUITE )
|
||||||
{
|
{
|
||||||
mbedtls_fprintf( stdout, " Test Suite not enabled" );
|
mbedtls_fprintf( stdout, "\n Test Suite not enabled" );
|
||||||
}
|
}
|
||||||
|
|
||||||
if( 1 == option_verbose && unmet_dep_count > 0 )
|
if( 1 == option_verbose && unmet_dep_count > 0 )
|
||||||
{
|
{
|
||||||
mbedtls_fprintf( stdout, " Unmet dependencies: " );
|
mbedtls_fprintf( stdout, "\n Unmet dependencies: " );
|
||||||
for( i = 0; i < unmet_dep_count; i++ )
|
for( i = 0; i < unmet_dep_count; i++ )
|
||||||
{
|
{
|
||||||
mbedtls_fprintf(stdout, "%s ",
|
mbedtls_fprintf(stdout, "%s ",
|
||||||
unmet_dependencies[i]);
|
unmet_dependencies[i]);
|
||||||
free(unmet_dependencies[i]);
|
free(unmet_dependencies[i]);
|
||||||
}
|
}
|
||||||
mbedtls_fprintf( stdout, "\n" );
|
|
||||||
}
|
}
|
||||||
|
mbedtls_fprintf( stdout, "\n" );
|
||||||
fflush( stdout );
|
fflush( stdout );
|
||||||
|
|
||||||
unmet_dep_count = 0;
|
unmet_dep_count = 0;
|
||||||
|
|
Loading…
Reference in a new issue