The app_kernel test hangs or crashes on qemu_x86_64 when more than one CPU is enabled. So limits the number of CPUs to 1 even when SMP is enabled. This issue has probably been masked for some time because the test was previously marked as being "slow". Signed-off-by: Martin Åberg <martin.aberg@gaisler.com>
19 lines
434 B
Plaintext
19 lines
434 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=2
|
|
CONFIG_TICKLESS_KERNEL=n
|
|
|
|
CONFIG_MAIN_THREAD_PRIORITY=6
|
|
CONFIG_FORCE_NO_ASSERT=y
|
|
|
|
# Disable HW Stack Protection (see #28664)
|
|
CONFIG_TEST_HW_STACK_PROTECTION=n
|
|
CONFIG_HW_STACK_PROTECTION=n
|
|
CONFIG_CBPRINTF_FP_SUPPORT=y
|
|
|
|
# Can only run under 1 CPU
|
|
CONFIG_MP_NUM_CPUS=1
|