From 4d2982091b5bb4626338ea45f9ce0ee4194b2416 Mon Sep 17 00:00:00 2001 From: k-stachowiak Date: Tue, 5 Feb 2019 09:22:20 +0100 Subject: [PATCH] Correct code formatting in the timing test suites --- tests/suites/test_suite_timing.function | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tests/suites/test_suite_timing.function b/tests/suites/test_suite_timing.function index 42d3da6ac..74dc82317 100644 --- a/tests/suites/test_suite_timing.function +++ b/tests/suites/test_suite_timing.function @@ -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 );