zephyr/tests/kernel/sched/schedule_api/testcase.yaml
Ying ming 9625576b3c test: scheduling :add new conf file
Add a conf file to make sure the kernel will use simple linked-list
ready queue as scheduling algorithm. This operation will increase module
testcase coverage and z_priq_dumb_add z_prj_dum_remove function are
called.

Signed-off-by: Ying ming <mingx.ying@intel.com>
2021-01-23 11:04:51 -05:00

34 lines
1004 B
YAML

common:
timeout: 180
tests:
kernel.scheduler:
filter: not CONFIG_SCHED_MULTIQ
extra_configs:
- CONFIG_TIMESLICING=y
tags: kernel threads sched userspace
kernel.scheduler.no_timeslicing:
filter: not CONFIG_SCHED_MULTIQ
extra_configs:
- CONFIG_TIMESLICING=n
tags: kernel threads sched userspace
kernel.scheduler.multiq:
extra_args: CONF_FILE=prj_multiq.conf
extra_configs:
- CONFIG_TIMESLICING=y
tags: kernel threads sched userspace
kernel.scheduler.multiq_no_timeslicing:
extra_args: CONF_FILE=prj_multiq.conf
extra_configs:
- CONFIG_TIMESLICING=n
tags: kernel threads sched userspace
kernel.scheduler.dumb_no_timeslicing:
extra_args: CONF_FILE=prj_dumb.conf
extra_configs:
- CONFIG_TIMESLICING=y
tags: kernel threads sched userspace
kernel.scheduler.dumb_no_timeslicing:
extra_args: CONF_FILE=prj_dumb.conf
extra_configs:
- CONFIG_TIMESLICING=n
tags: kernel threads sched userspace