2023-11-16 20:02:34 +08:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
/*
|
|
|
|
* Copyright(c) 2023 Intel Corporation. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <zephyr/logging/log.h>
|
2024-01-23 18:02:11 +08:00
|
|
|
#include <sof/boot_test.h>
|
2023-11-16 20:02:34 +08:00
|
|
|
|
|
|
|
#include <zephyr/ztest.h>
|
|
|
|
|
|
|
|
LOG_MODULE_REGISTER(sof_boot_test, LOG_LEVEL_DBG);
|
|
|
|
|
|
|
|
ZTEST_SUITE(sof_boot, NULL, NULL, NULL, NULL, NULL);
|
2024-01-23 18:02:11 +08:00
|
|
|
|
|
|
|
void sys_run_boot_tests(void)
|
|
|
|
{
|
|
|
|
ztest_run_all(NULL, false, 1, 1);
|
|
|
|
}
|
|
|
|
SYS_INIT(sys_run_boot_tests, APPLICATION, 99);
|
|
|
|
|