blob: 32e394fb0d9f91c3c222cf98e57157cf36794adb [file] [log] [blame]
/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @brief Tests for the LIFO kernel object
*
* Verify zephyr fifo apis under different context
*
* - API coverage
* -# k_lifo_init K_LIFO_DEFINE
* -# k_lifo_put k_lifo_put_list k_lifo_put_slist
* -# k_lifo_get *
*
* @defgroup kernel_lifo_tests LIFOs
* @ingroup all_tests
* @{
* @}
*/
#include <ztest.h>
extern void test_lifo_thread2thread(void);
extern void test_lifo_thread2isr(void);
extern void test_lifo_isr2thread(void);
extern void test_lifo_get_fail(void);
extern void test_lifo_loop(void);
/*test case main entry*/
void test_main(void)
{
ztest_test_suite(lifo_api,
ztest_1cpu_unit_test(test_lifo_thread2thread),
ztest_unit_test(test_lifo_thread2isr),
ztest_unit_test(test_lifo_isr2thread),
ztest_unit_test(test_lifo_get_fail),
ztest_1cpu_unit_test(test_lifo_loop));
ztest_run_test_suite(lifo_api);
}