The sys_kernel tests have some loops that work only with 1 CPU being active. So limits the number of CPUs to 1 even when SMP is enabled. This also allows qemu_x86_64 to run, so remove it from the exclude list. Fixes #26627 Signed-off-by: Daniel Leung <daniel.leung@intel.com>
16 lines
332 B
Plaintext
16 lines
332 B
Plaintext
CONFIG_TEST=y
|
|
# all printf, fprintf to stdout go to console
|
|
CONFIG_STDOUT_CONSOLE=y
|
|
|
|
# eliminate timer interrupts during the benchmark
|
|
CONFIG_SYS_CLOCK_TICKS_PER_SEC=1
|
|
CONFIG_TICKLESS_KERNEL=n
|
|
|
|
CONFIG_MAIN_STACK_SIZE=16384
|
|
CONFIG_FORCE_NO_ASSERT=y
|
|
|
|
CONFIG_TEST_HW_STACK_PROTECTION=n
|
|
|
|
# Can only run under 1 CPU
|
|
CONFIG_MP_NUM_CPUS=1
|