From 648f4d3a9fb89ab74ffb1a711a67618e00f38413 Mon Sep 17 00:00:00 2001 From: Sudeep Mohanty Date: Fri, 17 Jun 2022 16:03:34 +0200 Subject: [PATCH] freertos-smp: Fix test_preemtion yield time threshold for FreeRTOS SMP This commit adjusts the test_preemtion yield time threshold to pass when FreeRTOS SMP is enabled. --- components/freertos/test/miscellaneous/test_preemption.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/freertos/test/miscellaneous/test_preemption.c b/components/freertos/test/miscellaneous/test_preemption.c index 15c571ef4e..ee39e378b9 100644 --- a/components/freertos/test/miscellaneous/test_preemption.c +++ b/components/freertos/test/miscellaneous/test_preemption.c @@ -27,7 +27,7 @@ static volatile bool flag; #define MAX_YIELD_COUNT 10000 #else //TODO: IDF-5081 -#define MAX_YIELD_COUNT 15000 +#define MAX_YIELD_COUNT 17000 #endif // CONFIG_FREERTOS_SMP