Improve naming of the scheduler and call it what it is: simple. Using 'dumb' for the default scheduler algorithm in Zephyr is a bad idea. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
common:
|
|
timeout: 180
|
|
min_ram: 34
|
|
tags:
|
|
- kernel
|
|
- threads
|
|
- scheduler
|
|
- userspace
|
|
ignore_faults: true
|
|
tests:
|
|
kernel.scheduler:
|
|
filter: not CONFIG_SCHED_MULTIQ
|
|
extra_configs:
|
|
- CONFIG_TIMESLICING=y
|
|
kernel.scheduler.no_timeslicing:
|
|
filter: not CONFIG_SCHED_MULTIQ
|
|
extra_configs:
|
|
- CONFIG_TIMESLICING=n
|
|
kernel.scheduler.slice_perthread:
|
|
filter: not CONFIG_SCHED_MULTIQ
|
|
extra_configs:
|
|
- CONFIG_TIMESLICING=y
|
|
- CONFIG_TIMESLICE_PER_THREAD=y
|
|
kernel.scheduler.multiq:
|
|
extra_args: CONF_FILE=prj_multiq.conf
|
|
extra_configs:
|
|
- CONFIG_TIMESLICING=y
|
|
kernel.scheduler.multiq_no_timeslicing:
|
|
extra_args: CONF_FILE=prj_multiq.conf
|
|
extra_configs:
|
|
- CONFIG_TIMESLICING=n
|
|
kernel.scheduler.simple_timeslicing:
|
|
extra_args: CONF_FILE=prj_simple.conf
|
|
extra_configs:
|
|
- CONFIG_TIMESLICING=y
|
|
kernel.scheduler.simple_no_timeslicing:
|
|
extra_args: CONF_FILE=prj_simple.conf
|
|
extra_configs:
|
|
- CONFIG_TIMESLICING=n
|