tests: events: fix doxygen groups

Fix grouping and general doxygen fixups.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2025-04-17 18:29:51 -04:00 committed by Benjamin Cabé
commit 70b2b952db
3 changed files with 12 additions and 5 deletions

View file

@ -17,7 +17,7 @@
* -# k_event_wait_all * -# k_event_wait_all
* -# k_event_test * -# k_event_test
* *
* @defgroup kernel_event_tests events * @defgroup kernel_event_tests Events
* @ingroup all_tests * @ingroup all_tests
* @{ * @{
* @} * @}

View file

@ -46,6 +46,10 @@ static void entry_extra2(void *p1, void *p2, void *p3)
k_event_post(&test_event, events); k_event_post(&test_event, events);
} }
/**
* @ingroup kernel_event_tests
* @{
*/
/** /**
* Test the k_event_init() API. * Test the k_event_init() API.
@ -53,7 +57,6 @@ static void entry_extra2(void *p1, void *p2, void *p3)
* This is a white-box test to verify that the k_event_init() API initializes * This is a white-box test to verify that the k_event_init() API initializes
* the fields of a k_event structure as expected. * the fields of a k_event structure as expected.
*/ */
ZTEST(events_api, test_k_event_init) ZTEST(events_api, test_k_event_init)
{ {
static struct k_event event; static struct k_event event;
@ -431,3 +434,6 @@ ZTEST(events_api, test_event_receive)
test_wake_multiple_threads(); test_wake_multiple_threads();
} }
/**
* @}
*/

View file

@ -34,10 +34,8 @@ static K_SEM_DEFINE(sync_sem, 0, 1);
volatile static uint32_t test_events; volatile static uint32_t test_events;
/** /**
* @defgroup kernel_sys_events_tests Semaphore * @ingroup kernel_event_tests
* @ingroup all_tests
* @{ * @{
* @}
*/ */
static void entry_extra1(void *p1, void *p2, void *p3) static void entry_extra1(void *p1, void *p2, void *p3)
@ -404,5 +402,8 @@ void *sys_events_setup(void)
return NULL; return NULL;
} }
/**
* @}
*/
ZTEST_SUITE(sys_events, NULL, sys_events_setup, ZTEST_SUITE(sys_events, NULL, sys_events_setup,
ztest_simple_1cpu_before, ztest_simple_1cpu_after, NULL); ztest_simple_1cpu_before, ztest_simple_1cpu_after, NULL);