mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-14 20:33:57 +00:00
Disabling SMP mode for certain tests was a one-release thing, done to avoid having to triage every test independently (MANY are not SMP-safe), and with the knowledge that it was probably hiding bugs in the kernel. Turn it on pervasively. Tests are treated with a combination of flagging specific cases as "1cpu" where we have short-running tests that can be independently run in an otherwise SMP environment, and via setting CONFIG_MP_NUM_CPUS=1 where that's not possible (which still runs the full SMP kernel config, but with only one CPU available). Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
10 lines
303 B
Plaintext
10 lines
303 B
Plaintext
CONFIG_ZTEST=y
|
|
CONFIG_STACK_POINTER_RANDOM=64
|
|
CONFIG_ENTROPY_GENERATOR=y
|
|
CONFIG_TEST_RANDOM_GENERATOR=y
|
|
|
|
# The action of the only case in this test is to spawn higher priority
|
|
# threads and assume that they have run synchronously. It can't
|
|
# possible run them on the separate CPU.
|
|
CONFIG_MP_NUM_CPUS=1
|