Skip to content

Commit

Permalink
tests: posix: common: separate posix rwlocks tests into a standalone …
Browse files Browse the repository at this point in the history
…test

posix.common contains testsuites that can be separated into smaller
groups of tests. This change moves rwlocks into a singular
testsuite at tests/posix/rwlocks app directory.

Signed-off-by: Marvin Ouma <[email protected]>
  • Loading branch information
Pancakem committed Nov 5, 2024
1 parent 5249619 commit d2052cc
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/posix/rwlocks/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# SPDX-License-Identifier: Apache-2.0

cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(posix_rw_locks)

FILE(GLOB app_sources src/*.c)
zephyr_include_directories(${ZEPHYR_BASE}/lib/posix)

target_sources(app PRIVATE ${app_sources})

target_compile_options(app PRIVATE -U_POSIX_C_SOURCE -D_POSIX_C_SOURCE=200809L)
6 changes: 6 additions & 0 deletions tests/posix/rwlocks/prj.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CONFIG_POSIX_API=y
CONFIG_ZTEST=y

CONFIG_POSIX_AEP_CHOICE_PSE51=y
CONFIG_POSIX_READER_WRITER_LOCKS=y
CONFIG_HEAP_MEM_POOL_SIZE=4096
File renamed without changes.
26 changes: 26 additions & 0 deletions tests/posix/rwlocks/testcase.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
common:
filter: not CONFIG_NATIVE_LIBC
tags:
- posix
- rwlocks
# 1 tier0 platform per supported architecture
platform_key:
- arch
- simulation
tests:
portability.posix.rwlocks:
min_flash: 64
min_ram: 32
portability.posix.rwlocks.minimal:
extra_configs:
- CONFIG_MINIMAL_LIBC=y
portability.posix.rwlocks.newlib:
filter: TOOLCHAIN_HAS_NEWLIB == 1
extra_configs:
- CONFIG_NEWLIB_LIBC=y
- CONFIG_NEWLIB_LIBC_MIN_REQUIRED_HEAP_SIZE=8192
portability.posix.rwlocks.picolibc:
tags: picolibc
filter: CONFIG_PICOLIBC_SUPPORTED
extra_configs:
- CONFIG_PICOLIBC=y

0 comments on commit d2052cc

Please sign in to comment.