tests: kernel: mem_protect: mem_map: fix wrong include
This test needs to include zephyr/kernel/mm/demand_paging.h, not zephyr/kernel/mm.h, due to its use of k_mem_pin(). Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
This commit is contained in:
parent
eeb6bf7dd9
commit
67ec329a70
|
@ -5,11 +5,14 @@
|
|||
*/
|
||||
|
||||
#include <zephyr/ztest.h>
|
||||
#include <zephyr/kernel/mm.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <mmu.h>
|
||||
#include <zephyr/linker/sections.h>
|
||||
|
||||
#ifdef CONFIG_DEMAND_PAGING
|
||||
#include <zephyr/kernel/mm/demand_paging.h>
|
||||
#endif /* CONFIG_DEMAND_PAGING */
|
||||
|
||||
/* 32-bit IA32 page tables have no mechanism to restrict execution */
|
||||
#if defined(CONFIG_X86) && !defined(CONFIG_X86_64) && !defined(CONFIG_X86_PAE)
|
||||
#define SKIP_EXECUTE_TESTS
|
||||
|
|
Loading…
Reference in a new issue