mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-21 07:15:21 +00:00
Most of the tests in the LLEXT subsystem test suite run with memory protection hardware (MPU/MMU) disabled, to avoid including memory domain issues while testing the core functionality. Only a few tests need to run with MPU/MMU enabled. This patch simplifies the testcase.yaml by setting the memory protection as disabled in a shared config file that is included by most tests. Signed-off-by: Luca Burelli <l.burelli@arduino.cc>
13 lines
323 B
Plaintext
13 lines
323 B
Plaintext
CONFIG_ZTEST=y
|
|
CONFIG_ZTEST_STACK_SIZE=4096
|
|
CONFIG_LOG=y
|
|
CONFIG_LLEXT=y
|
|
CONFIG_LLEXT_HEAP_SIZE=64
|
|
CONFIG_LLEXT_EXPORT_DEVICES=y
|
|
CONFIG_LLEXT_LOG_LEVEL_DBG=y
|
|
|
|
CONFIG_APPLICATION_DEFINED_SYSCALL=y
|
|
|
|
# The bulk of the tests run with MPU/MMU disabled by including additional
|
|
# configuration entries from no_mem_protection.conf.
|