1 /*
2  * Copyright (c) 2022 Intel Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/ztest.h>
8 
test_main(void)9 void test_main(void)
10 {
11 	ztest_run_test_suite(timer_jitter_drift, false, 1, 1, NULL);
12 #ifndef CONFIG_TIMER_EXTERNAL_TEST
13 	ztest_run_test_suite(timer_tick_train, false, 1, 1, NULL);
14 #endif
15 }
16