Skip to content

Commit 6d53606

Browse files
committed
tests: kernel: add test for condition variables
add a test for condition variables. Signed-off-by: Anas Nashif <[email protected]>
1 parent 06eb489 commit 6d53606

File tree

4 files changed

+618
-0
lines changed

4 files changed

+618
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
3+
cmake_minimum_required(VERSION 3.13.1)
4+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
5+
project(condvar)
6+
7+
FILE(GLOB app_sources src/*.c)
8+
target_sources(app PRIVATE ${app_sources})
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CONFIG_ZTEST=y
2+
CONFIG_IRQ_OFFLOAD=y
3+
CONFIG_TEST_USERSPACE=y
4+
CONFIG_MP_NUM_CPUS=1
5+
CONFIG_ZTEST_FATAL_HOOK=y

0 commit comments

Comments
 (0)