Convert them to native YAML lists. Support for space-separated lists was deprecated in Twister a long time ago. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
75 lines
2.2 KiB
YAML
75 lines
2.2 KiB
YAML
common:
|
|
tags:
|
|
- kernel
|
|
- security
|
|
min_ram: 32
|
|
integration_platforms:
|
|
- qemu_x86
|
|
- qemu_x86/atom/nommu
|
|
- qemu_x86_64
|
|
- qemu_cortex_a53
|
|
- qemu_cortex_a53/qemu_cortex_a53/smp
|
|
- qemu_cortex_m3
|
|
- qemu_riscv32
|
|
- qemu_riscv32e
|
|
- qemu_riscv64
|
|
- qemu_riscv64/qemu_virt_riscv64/smp
|
|
|
|
# Permutations of (pool | alloc | user)
|
|
tests:
|
|
kernel.threads.dynamic_thread.stack.no_pool.no_alloc.no_user:
|
|
extra_configs:
|
|
# 000
|
|
- CONFIG_DYNAMIC_THREAD_POOL_SIZE=0
|
|
- CONFIG_DYNAMIC_THREAD_ALLOC=n
|
|
- CONFIG_USERSPACE=n
|
|
kernel.threads.dynamic_thread.stack.no_pool.no_alloc.user:
|
|
tags: userspace
|
|
extra_configs:
|
|
# 001
|
|
- CONFIG_DYNAMIC_THREAD_POOL_SIZE=0
|
|
- CONFIG_DYNAMIC_THREAD_ALLOC=n
|
|
- CONFIG_USERSPACE=y
|
|
kernel.threads.dynamic_thread.stack.no_pool.alloc.no_user:
|
|
extra_configs:
|
|
# 010
|
|
- CONFIG_DYNAMIC_THREAD_POOL_SIZE=0
|
|
- CONFIG_DYNAMIC_THREAD_ALLOC=y
|
|
- CONFIG_DYNAMIC_THREAD_PREFER_ALLOC=y
|
|
- CONFIG_USERSPACE=n
|
|
kernel.threads.dynamic_thread.stack.no_pool.alloc.user:
|
|
tags: userspace
|
|
extra_configs:
|
|
# 011
|
|
- CONFIG_DYNAMIC_THREAD_POOL_SIZE=0
|
|
- CONFIG_DYNAMIC_THREAD_ALLOC=y
|
|
- CONFIG_DYNAMIC_THREAD_PREFER_ALLOC=y
|
|
- CONFIG_USERSPACE=y
|
|
kernel.threads.dynamic_thread.stack.pool.no_alloc.no_user:
|
|
extra_configs:
|
|
# 100
|
|
- CONFIG_DYNAMIC_THREAD_POOL_SIZE=2
|
|
- CONFIG_DYNAMIC_THREAD_ALLOC=n
|
|
- CONFIG_USERSPACE=n
|
|
kernel.threads.dynamic_thread.stack.pool.no_alloc.user:
|
|
tags: userspace
|
|
extra_configs:
|
|
# 101
|
|
- CONFIG_DYNAMIC_THREAD_POOL_SIZE=2
|
|
- CONFIG_DYNAMIC_THREAD_ALLOC=n
|
|
- CONFIG_USERSPACE=y
|
|
kernel.threads.dynamic_thread.stack.pool.alloc.no_user:
|
|
extra_configs:
|
|
# 110
|
|
- CONFIG_DYNAMIC_THREAD_PREFER_ALLOC=y
|
|
- CONFIG_DYNAMIC_THREAD_POOL_SIZE=2
|
|
- CONFIG_DYNAMIC_THREAD_ALLOC=y
|
|
- CONFIG_USERSPACE=n
|
|
kernel.threads.dynamic_thread.stack.pool.alloc.user:
|
|
tags: userspace
|
|
extra_configs:
|
|
# 111
|
|
- CONFIG_DYNAMIC_THREAD_PREFER_ALLOC=y
|
|
- CONFIG_DYNAMIC_THREAD_POOL_SIZE=2
|
|
- CONFIG_DYNAMIC_THREAD_ALLOC=y
|
|
- CONFIG_USERSPACE=y
|