blob: 653d27cff39347c8369be1744304580c47aff011 [file] [log] [blame]
/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @addtogroup t_kernel_threads
* @{
* @defgroup t_systhreads test_systhreads
* @brief TestPurpose: verify 2 system threads - main thread and idle thread
* @}
*/
#include <ztest.h>
#include "test_systhreads.h"
/* test case main entry */
void test_main(void)
{
test_systhreads_setup();
ztest_test_suite(test_systhreads,
ztest_unit_test(test_systhreads_main),
ztest_unit_test(test_systhreads_idle));
ztest_run_test_suite(test_systhreads);
}