-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: posix: common: separate posix xsi streams to standalone test
posix.common contains testsuites that can be separated into smaller groups of tests. This change moves stropts into a singular testsuite at tests/posix/xsi_streams app directory. Signed-off-by: Marvin Ouma <[email protected]>
- Loading branch information
Showing
4 changed files
with
46 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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_xopen_streams) | ||
|
||
FILE(GLOB app_sources src/main.c) | ||
|
||
target_sources(app PRIVATE ${app_sources}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CONFIG_POSIX_API=y | ||
CONFIG_ZTEST=y | ||
|
||
CONFIG_POSIX_AEP_CHOICE_BASE=y | ||
CONFIG_XOPEN_STREAMS=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
common: | ||
filter: not CONFIG_NATIVE_LIBC | ||
tags: | ||
- posix | ||
- xopen_streams | ||
# 1 tier0 platform per supported architecture | ||
platform_key: | ||
- arch | ||
- simulation | ||
min_flash: 64 | ||
min_ram: 32 | ||
tests: | ||
portability.posix.xopen_streams: {} | ||
portability.posix.xopen_streams.minimal: | ||
extra_configs: | ||
- CONFIG_MINIMAL_LIBC=y | ||
portability.posix.xopen_streams.newlib: | ||
filter: TOOLCHAIN_HAS_NEWLIB == 1 | ||
extra_configs: | ||
- CONFIG_NEWLIB_LIBC=y | ||
portability.posix.xopen_streams.picolibc: | ||
tags: picolibc | ||
filter: CONFIG_PICOLIBC_SUPPORTED | ||
extra_configs: | ||
- CONFIG_PICOLIBC=y |