From 4b9c58806b12ffab72b46ecad78af0387e4a741a Mon Sep 17 00:00:00 2001 From: Tomi Fontanilles Date: Wed, 30 Oct 2024 16:09:34 +0200 Subject: [PATCH] tests: portability: cmsis_rtos_v2: do not disable 64-bit timeouts Some code that automatically gets embedded on some platforms relies on having `CONFIG_TIMEOUT_64BIT` enabled. Do not force disabling that Kconfig option in the test configuration, as that will make the test fail to compile on those platforms. Signed-off-by: Tomi Fontanilles --- tests/subsys/portability/cmsis_rtos_v2/prj.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/subsys/portability/cmsis_rtos_v2/prj.conf b/tests/subsys/portability/cmsis_rtos_v2/prj.conf index 282d8c4ebcd..d8e93b74785 100644 --- a/tests/subsys/portability/cmsis_rtos_v2/prj.conf +++ b/tests/subsys/portability/cmsis_rtos_v2/prj.conf @@ -13,7 +13,6 @@ CONFIG_SCHED_SCALABLE=y CONFIG_CMSIS_V2_MEM_SLAB_MAX_DYNAMIC_SIZE=128 CONFIG_CMSIS_V2_THREAD_MAX_COUNT=23 CONFIG_CMSIS_V2_THREAD_DYNAMIC_MAX_COUNT=10 -CONFIG_TIMEOUT_64BIT=n CONFIG_CMSIS_V2_THREAD_MAX_STACK_SIZE=1024 CONFIG_CMSIS_V2_THREAD_DYNAMIC_STACK_SIZE=1024 CONFIG_MP_MAX_NUM_CPUS=1