mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 08:28:25 +00:00
Correct code formatting in the timing test suites
This commit is contained in:
parent
73a8a0f7d9
commit
fa444586c0
1 changed files with 10 additions and 4 deletions
|
@ -39,10 +39,13 @@ void timing_get_timer( )
|
|||
/* BEGIN_CASE */
|
||||
void timing_set_alarm( int seconds )
|
||||
{
|
||||
if( seconds == 0 ) {
|
||||
if( seconds == 0 )
|
||||
{
|
||||
mbedtls_set_alarm( seconds );
|
||||
TEST_ASSERT( mbedtls_timing_alarmed == 1 );
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
mbedtls_set_alarm( seconds );
|
||||
TEST_ASSERT( mbedtls_timing_alarmed == 0 ||
|
||||
mbedtls_timing_alarmed == 1 );
|
||||
|
@ -55,11 +58,14 @@ void timing_delay( int fin_ms )
|
|||
{
|
||||
mbedtls_timing_delay_context ctx;
|
||||
int result;
|
||||
if( fin_ms == 0 ) {
|
||||
if( fin_ms == 0 )
|
||||
{
|
||||
mbedtls_timing_set_delay( &ctx, 0, 0 );
|
||||
result = mbedtls_timing_get_delay( &ctx );
|
||||
TEST_ASSERT( result == -1 );
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
mbedtls_timing_set_delay( &ctx, fin_ms / 2, fin_ms );
|
||||
result = mbedtls_timing_get_delay( &ctx );
|
||||
TEST_ASSERT( result >= 0 && result <= 2 );
|
||||
|
|
Loading…
Reference in a new issue