With picolibc being the default C library, we need to explicitly include testing against the minimal C library for kernel components. Signed-off-by: Keith Packard <keithp@keithp.com>
22 lines
527 B
YAML
22 lines
527 B
YAML
tests:
|
|
kernel.multiprocessing.spinlock:
|
|
tags:
|
|
- kernel
|
|
- smp
|
|
- spinlock
|
|
filter: CONFIG_SMP and CONFIG_MP_MAX_NUM_CPUS > 1 and CONFIG_MP_MAX_NUM_CPUS <= 4
|
|
depends_on:
|
|
- smp
|
|
kernel.multiprocessing.spinlock.minimallibc:
|
|
tags:
|
|
- kernel
|
|
- smp
|
|
- spinlock
|
|
- libc
|
|
filter: CONFIG_SMP and CONFIG_MP_MAX_NUM_CPUS > 1 and CONFIG_MP_MAX_NUM_CPUS <= 4 and
|
|
CONFIG_MINIMAL_LIBC_SUPPORTED
|
|
depends_on:
|
|
- smp
|
|
extra_configs:
|
|
- CONFIG_MINIMAL_LIBC=y
|