1 /* 2 * Copyright (c) 2016 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * @brief Tests for the FIFO kernel object 9 * 10 * Verify zephyr fifo apis under different context 11 * 12 * - API coverage 13 * -# k_fifo_init K_FIFO_DEFINE 14 * -# k_fifo_put k_fifo_put_list k_fifo_put_slist 15 * -# k_fifo_get * 16 * 17 * @defgroup kernel_fifo_tests FIFOs 18 * @ingroup all_tests 19 * @{ 20 * @} 21 */ 22 23 #include <zephyr/ztest.h> 24 25 ZTEST_SUITE(fifo_api, NULL, NULL, NULL, NULL, NULL); 26 27 ZTEST_SUITE(fifo_api_1cpu, NULL, NULL, 28 ztest_simple_1cpu_before, ztest_simple_1cpu_after, NULL); 29