This commit adds new test cases for the pipe API rework. * basic.c: Sanity check for pipe operations. * concurrency.c: Test pipe operations with multiple threads. * stress.c: Test pipe operations under stress conditions. And moves the old pipe test cases to the deprecated folder. Signed-off-by: Måns Ansgariusson <Mansgariusson@gmail.com>
13 lines
273 B
CMake
13 lines
273 B
CMake
cmake_minimum_required(VERSION 3.13.1)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
|
|
project(app)
|
|
|
|
target_sources(app
|
|
PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/basic.c
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/stress.c
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/concurrency.c
|
|
)
|