tests: critical: change doxygen group
Rename doxygen group to kernel_workqueue_tests Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
a3ddaf8dbc
commit
9be6847cc6
1 changed files with 5 additions and 9 deletions
|
@ -9,10 +9,6 @@
|
||||||
*
|
*
|
||||||
* @brief Offload to the Kernel workqueue
|
* @brief Offload to the Kernel workqueue
|
||||||
*
|
*
|
||||||
* @defgroup kernel_critical_tests Critical Tests
|
|
||||||
*
|
|
||||||
* @ingroup all_tests
|
|
||||||
*
|
|
||||||
* This test verifies that the kernel workqueue operates as
|
* This test verifies that the kernel workqueue operates as
|
||||||
* expected.
|
* expected.
|
||||||
*
|
*
|
||||||
|
@ -193,9 +189,9 @@ void regression_thread(void *arg1, void *arg2, void *arg3)
|
||||||
* @details Check whether variable value per-thread is saved
|
* @details Check whether variable value per-thread is saved
|
||||||
* during context switch
|
* during context switch
|
||||||
*
|
*
|
||||||
* @ingroup kernel_critical_tests
|
* @ingroup kernel_workqueue_tests
|
||||||
*/
|
*/
|
||||||
void test_critical(void)
|
void test_offload_workqueue(void)
|
||||||
{
|
{
|
||||||
critical_var = 0U;
|
critical_var = 0U;
|
||||||
alt_thread_iterations = 0U;
|
alt_thread_iterations = 0U;
|
||||||
|
@ -219,8 +215,8 @@ void test_critical(void)
|
||||||
|
|
||||||
void test_main(void)
|
void test_main(void)
|
||||||
{
|
{
|
||||||
ztest_test_suite(kernel_critical,
|
ztest_test_suite(kernel_offload_wq,
|
||||||
ztest_1cpu_unit_test(test_critical)
|
ztest_1cpu_unit_test(test_offload_workqueue)
|
||||||
);
|
);
|
||||||
ztest_run_test_suite(kernel_critical);
|
ztest_run_test_suite(kernel_offload_wq);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue