test_suite_timing.function 286 B

123456789101112131415
  1. /* BEGIN_HEADER */
  2. #include "mbedtls/timing.h"
  3. /* END_HEADER */
  4. /* BEGIN_DEPENDENCIES
  5. * depends_on:MBEDTLS_TIMING_C
  6. * END_DEPENDENCIES
  7. */
  8. /* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
  9. void timing_selftest()
  10. {
  11. TEST_ASSERT( mbedtls_timing_self_test( 1 ) == 0 );
  12. }
  13. /* END_CASE */