mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 05:55:40 +01:00
16 lines
286 B
Plaintext
16 lines
286 B
Plaintext
|
/* BEGIN_HEADER */
|
||
|
#include "mbedtls/timing.h"
|
||
|
/* END_HEADER */
|
||
|
|
||
|
/* BEGIN_DEPENDENCIES
|
||
|
* depends_on:MBEDTLS_TIMING_C
|
||
|
* END_DEPENDENCIES
|
||
|
*/
|
||
|
|
||
|
/* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
|
||
|
void timing_selftest()
|
||
|
{
|
||
|
TEST_ASSERT( mbedtls_timing_self_test( 0 ) == 0 );
|
||
|
}
|
||
|
/* END_CASE */
|