zephyr/tests/kernel/timer/timer_behavior/src/main.c
Anas Nashif 376085c9ed tests: kernel: add missing test call argument
Add missing param argument.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2024-08-24 07:17:15 -04:00

16 lines
306 B
C

/*
* Copyright (c) 2022 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/ztest.h>
void test_main(void)
{
ztest_run_test_suite(timer_jitter_drift, false, 1, 1, NULL);
#ifndef CONFIG_TIMER_EXTERNAL_TEST
ztest_run_test_suite(timer_tick_train, false, 1, 1, NULL);
#endif
}