From 819fc09027ad5a408ca066d8b5b7d722e827c337 Mon Sep 17 00:00:00 2001 From: Song Ruo Jing Date: Thu, 6 Mar 2025 20:33:43 +0800 Subject: [PATCH] refactor(uart): increase test app memory leak tolerance --- components/driver/test_apps/uart/main/test_app_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/driver/test_apps/uart/main/test_app_main.c b/components/driver/test_apps/uart/main/test_app_main.c index c1070bd94d..5db843a059 100644 --- a/components/driver/test_apps/uart/main/test_app_main.c +++ b/components/driver/test_apps/uart/main/test_app_main.c @@ -10,7 +10,7 @@ #include "freertos/FreeRTOS.h" #include "freertos/task.h" -#define TEST_MEMORY_LEAK_THRESHOLD (200) +#define TEST_MEMORY_LEAK_THRESHOLD (250) static size_t before_free_8bit; static size_t before_free_32bit;