16 lines
306 B
C
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
|
|
}
|