mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 08:06:39 +00:00
tls rely on both arch has tls and toolchain support tls, add filter: CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE for some tests enabled tls. Signed-off-by: Watson Zeng <zhiwei@synopsys.com>
23 lines
737 B
YAML
23 lines
737 B
YAML
common:
|
|
arch_exclude: nios2 posix
|
|
min_ram: 128
|
|
tags: posix filesystem
|
|
tests:
|
|
portability.posix.fs:
|
|
extra_configs:
|
|
- CONFIG_NEWLIB_LIBC=n
|
|
portability.posix.fs.newlib:
|
|
filter: TOOLCHAIN_HAS_NEWLIB == 1
|
|
extra_configs:
|
|
- CONFIG_NEWLIB_LIBC=y
|
|
portability.posix.fs.tls:
|
|
filter: CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE
|
|
extra_configs:
|
|
- CONFIG_NEWLIB_LIBC=n
|
|
- CONFIG_THREAD_LOCAL_STORAGE=y
|
|
portability.posix.fs.tls.newlib:
|
|
filter: TOOLCHAIN_HAS_NEWLIB == 1 and CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE
|
|
extra_configs:
|
|
- CONFIG_NEWLIB_LIBC=y
|
|
- CONFIG_THREAD_LOCAL_STORAGE=y
|