zephyr/tests/lib/c_lib/common/testcase.yaml
Christopher Friedt dd27dff492 tests: lib: c_lib: separate libc tests into smaller suites
C library testing is mainly there to support what is
necessary to support Zephyr. We do test a variety of libcs
currently, which is where YAML comes in handy.

However, the main libc testsuite can be overkill for testing
some things, and might not be suitable for testing optional
features.

Create a 'common' subdirectory for common libc tests.

Signed-off-by: Christopher Friedt <cfriedt@meta.com>
2023-11-14 18:23:42 +09:00

46 lines
1.2 KiB
YAML

common:
tags:
- clib
ignore_faults: true
integration_platforms:
- mps2_an385
tests:
libraries.libc.common: {}
libraries.libc.common.minimal:
filter: CONFIG_MINIMAL_LIBC_SUPPORTED
tags: minimal_libc
extra_configs:
- CONFIG_MINIMAL_LIBC=y
- CONFIG_MINIMAL_LIBC_NON_REENTRANT_FUNCTIONS=y
- CONFIG_MINIMAL_LIBC_RAND=y
libraries.libc.common.newlib:
filter: CONFIG_NEWLIB_LIBC_SUPPORTED
min_ram: 32
tags: newlib
extra_configs:
- CONFIG_NEWLIB_LIBC=y
libraries.libc.common.newlib_nano:
filter: CONFIG_NEWLIB_LIBC_SUPPORTED and CONFIG_HAS_NEWLIB_LIBC_NANO
tags: newlib
extra_configs:
- CONFIG_NEWLIB_LIBC=y
- CONFIG_NEWLIB_LIBC_NANO=y
libraries.libc.common.picolibc:
filter: CONFIG_PICOLIBC_SUPPORTED
tags: picolibc
extra_configs:
- CONFIG_PICOLIBC=y
libraries.libc.common.picolibc.module:
filter: CONFIG_ZEPHYR_PICOLIBC_MODULE
tags: picolibc
extra_configs:
- CONFIG_PICOLIBC=y
- CONFIG_PICOLIBC_USE_MODULE=y
libraries.libc.common.picolibc.notls:
filter: CONFIG_ZEPHYR_PICOLIBC_MODULE
tags: picolibc
extra_configs:
- CONFIG_PICOLIBC=y
- CONFIG_PICOLIBC_USE_MODULE=y
- CONFIG_THREAD_LOCAL_STORAGE=n