1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-11-05 08:10:38 +03:00

Fix compilation error

Change test_info.failed to test_info.result,
as it was previously changed.
This commit is contained in:
Ron Eldor
2019-09-25 15:04:21 +03:00
parent 39512b4b8a
commit ae9f2a2acc

View File

@@ -375,7 +375,7 @@ int execute_tests( int args, const char ** argv )
while ( 1 )
{
ret = 0;
test_info.failed = 0;
test_info.result = TEST_RESULT_SUCCESS;
data_len = 0;
data = receive_data( &data_len );
@@ -433,7 +433,7 @@ int execute_tests( int args, const char ** argv )
if ( ret )
send_failure( ret );
else
send_status( test_info.failed );
send_status( test_info.result );
}
return( 0 );
}