tests: posix: common: separate posix rwlocks tests into a standalone 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 <pancakesdeath@protonmail.com>
This commit is contained in:
parent
f7633a55aa
commit
7e8ee25479
4 changed files with 44 additions and 4 deletions
9
tests/posix/rwlocks/CMakeLists.txt
Normal file
9
tests/posix/rwlocks/CMakeLists.txt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# 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)
|
||||||
|
|
||||||
|
target_sources(app PRIVATE src/main.c)
|
||||||
|
|
||||||
|
target_compile_options(app PRIVATE -U_POSIX_C_SOURCE -D_POSIX_C_SOURCE=200809L)
|
5
tests/posix/rwlocks/prj.conf
Normal file
5
tests/posix/rwlocks/prj.conf
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
CONFIG_POSIX_API=y
|
||||||
|
CONFIG_ZTEST=y
|
||||||
|
|
||||||
|
CONFIG_POSIX_AEP_CHOICE_BASE=y
|
||||||
|
CONFIG_POSIX_READER_WRITER_LOCKS=y
|
|
@ -47,7 +47,7 @@ static void *thread_top(void *p1)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
ZTEST(rwlock, test_rw_lock)
|
ZTEST(posix_rw_locks, test_rw_lock)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
pthread_t newthread[N_THR];
|
pthread_t newthread[N_THR];
|
||||||
|
@ -133,12 +133,12 @@ static void test_pthread_rwlockattr_pshared_common(bool set, int pshared)
|
||||||
zassert_ok(pthread_rwlockattr_destroy(&attr));
|
zassert_ok(pthread_rwlockattr_destroy(&attr));
|
||||||
}
|
}
|
||||||
|
|
||||||
ZTEST(rwlock, test_pthread_rwlockattr_getpshared)
|
ZTEST(posix_rw_locks, test_pthread_rwlockattr_getpshared)
|
||||||
{
|
{
|
||||||
test_pthread_rwlockattr_pshared_common(false, 0);
|
test_pthread_rwlockattr_pshared_common(false, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
ZTEST(rwlock, test_pthread_rwlockattr_setpshared)
|
ZTEST(posix_rw_locks, test_pthread_rwlockattr_setpshared)
|
||||||
{
|
{
|
||||||
test_pthread_rwlockattr_pshared_common(true, PTHREAD_PROCESS_PRIVATE);
|
test_pthread_rwlockattr_pshared_common(true, PTHREAD_PROCESS_PRIVATE);
|
||||||
test_pthread_rwlockattr_pshared_common(true, PTHREAD_PROCESS_SHARED);
|
test_pthread_rwlockattr_pshared_common(true, PTHREAD_PROCESS_SHARED);
|
||||||
|
@ -154,4 +154,4 @@ static void before(void *arg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ZTEST_SUITE(rwlock, NULL, NULL, before, NULL, NULL);
|
ZTEST_SUITE(posix_rw_locks, NULL, NULL, before, NULL, NULL);
|
26
tests/posix/rwlocks/testcase.yaml
Normal file
26
tests/posix/rwlocks/testcase.yaml
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue