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:
Anas Nashif 2020-03-30 10:23:51 -04:00
commit 9be6847cc6

View file

@ -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);
} }