zephyr/tests/kernel/fifo/fifo_api/src/main.c
Fabio Baltieri def230187b test: fix more legacy #include paths
Add a bunch of missing "zephyr/" prefixes to #include statements in
various test and test framework files.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2022-08-02 16:41:41 +01:00

29 lines
578 B
C

/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @brief Tests for the FIFO kernel object
*
* Verify zephyr fifo apis under different context
*
* - API coverage
* -# k_fifo_init K_FIFO_DEFINE
* -# k_fifo_put k_fifo_put_list k_fifo_put_slist
* -# k_fifo_get *
*
* @defgroup kernel_fifo_tests FIFOs
* @ingroup all_tests
* @{
* @}
*/
#include <zephyr/ztest.h>
ZTEST_SUITE(fifo_api, NULL, NULL, NULL, NULL, NULL);
ZTEST_SUITE(fifo_api_1cpu, NULL, NULL,
ztest_simple_1cpu_before, ztest_simple_1cpu_after, NULL);