mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-25 09:06:59 +00:00
Fix compilation error
Change test_info.failed to test_info.result, as it was previously changed.
This commit is contained in:
parent
39512b4b8a
commit
ae9f2a2acc
|
@ -375,7 +375,7 @@ int execute_tests( int args, const char ** argv )
|
||||||
while ( 1 )
|
while ( 1 )
|
||||||
{
|
{
|
||||||
ret = 0;
|
ret = 0;
|
||||||
test_info.failed = 0;
|
test_info.result = TEST_RESULT_SUCCESS;
|
||||||
data_len = 0;
|
data_len = 0;
|
||||||
|
|
||||||
data = receive_data( &data_len );
|
data = receive_data( &data_len );
|
||||||
|
@ -433,7 +433,7 @@ int execute_tests( int args, const char ** argv )
|
||||||
if ( ret )
|
if ( ret )
|
||||||
send_failure( ret );
|
send_failure( ret );
|
||||||
else
|
else
|
||||||
send_status( test_info.failed );
|
send_status( test_info.result );
|
||||||
}
|
}
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue