Limit the testcase to targets with more than 32KB RAM
Because of the CONFIG_NEWLIB_LIBC_MIN_REQUIRED_HEAP_SIZE 8192,
the RAM used by the testcase on a too small target might fail
at runtime. For example on a nucleo_l073rz target:
RAM: 15292 B 20 KB 74.67%
Signed-off-by: Francois Ramu <francois.ramu@st.com>
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
common:
|
|
tags:
|
|
- clib
|
|
filter: not CONFIG_NATIVE_APPLICATION
|
|
integration_platforms:
|
|
- mps2_an385
|
|
tests:
|
|
libraries.libc:
|
|
ignore_faults: true
|
|
filter: not (CONFIG_ARCH_POSIX and CONFIG_EXTERNAL_LIBC)
|
|
libraries.libc.picolibc:
|
|
filter: CONFIG_PICOLIBC_SUPPORTED
|
|
tags: picolibc
|
|
ignore_faults: true
|
|
extra_configs:
|
|
- CONFIG_PICOLIBC=y
|
|
libraries.libc.newlib:
|
|
filter: CONFIG_NEWLIB_LIBC_SUPPORTED
|
|
min_ram: 32
|
|
tags: newlib
|
|
ignore_faults: true
|
|
extra_configs:
|
|
- CONFIG_NEWLIB_LIBC=y
|
|
libraries.libc.newlib_nano:
|
|
filter: CONFIG_NEWLIB_LIBC_SUPPORTED and CONFIG_HAS_NEWLIB_LIBC_NANO
|
|
tags: newlib
|
|
ignore_faults: true
|
|
extra_configs:
|
|
- CONFIG_NEWLIB_LIBC=y
|
|
- CONFIG_NEWLIB_LIBC_NANO=y
|
|
libraries.libc.minimal.strerror_table:
|
|
tags: minimal_libc
|
|
extra_configs:
|
|
- CONFIG_MINIMAL_LIBC=y
|
|
- CONFIG_MINIMAL_LIBC_STRING_ERROR_TABLE=y
|
|
libraries.libc.minimal.no_strerror_table:
|
|
tags: minimal_libc
|
|
extra_configs:
|
|
- CONFIG_MINIMAL_LIBC=y
|
|
- CONFIG_MINIMAL_LIBC_STRING_ERROR_TABLE=n
|