|
| K_THREAD_STACK_DEFINE (threadstack2,(512+CONFIG_TEST_EXTRA_STACK_SIZE)) |
|
static void | stack_pop_fail (struct k_stack *rx_data_stack) |
|
void | tStack_pop_entry (void *p1, void *p2, void *p3) |
|
| ZTEST (stack_fail, test_stack_pop_fail) |
| Verifies stack pop functionality.
|
|
| ZTEST (stack_fail, test_stack_cleanup_error) |
| Verifies cleanup a stack that still be needed by another thread.
|
|
| ZTEST (stack_fail, test_stack_push_full) |
| Verifies push a data in the full stack.
|
|
| ZTEST_USER (stack_fail, test_stack_user_pop_fail) |
| Verifies stack pop from a user thread.
|
|
| ZTEST_USER (stack_fail, test_stack_user_init_null) |
| Verifies stack alloc and initialize a null pointer.
|
|
| ZTEST_USER (stack_fail, test_stack_user_init_invalid_value) |
| Verify that alloc and initialize a stack with 0 memory.
|
|
| ZTEST_USER (stack_fail, test_stack_user_push_null) |
| Verify that push some data into a NULL pointer.
|
|
| ZTEST_USER (stack_fail, test_stack_user_pop_null) |
| Verifies pop data from a NULL pointer.
|
|
| ZTEST_USER (stack_fail, test_stack_user_pop_permission) |
| Verifies cleanup a stack that its data still be waited by another thread.
|
|