From 8bfd8457ea7a4e4476cb54faea4f9d42129533b1 Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Fri, 25 Jan 2019 10:34:14 -0800 Subject: [PATCH] tests: mem_protect: fix Kconfig We want CONFIG_APPLICATION_MEMORY specifically disabled for this test, but it was being transitively selected by CONFIG_TEST_USERSPACE which defaults to on for CONFIG_TEST. Turn it off so that disabling application memory in the config actually has an effect. Signed-off-by: Andrew Boie --- tests/kernel/mem_protect/userspace/prj.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/kernel/mem_protect/userspace/prj.conf b/tests/kernel/mem_protect/userspace/prj.conf index 43a55c7756f..e6cf02f9541 100644 --- a/tests/kernel/mem_protect/userspace/prj.conf +++ b/tests/kernel/mem_protect/userspace/prj.conf @@ -1,4 +1,5 @@ CONFIG_ZTEST=y +CONFIG_TEST_USERSPACE=n CONFIG_USERSPACE=y CONFIG_APPLICATION_MEMORY=n CONFIG_APP_SHARED_MEM=y