From 561daaab813bdf757824e4f7cb0e6ff311e97ddd Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Tue, 26 Nov 2019 15:21:47 +0100 Subject: [PATCH] tests/malloc: reduce defaut chunk size This allows to automatically run the test on very constrained platforms such as arduino-uno (2KB RAM) --- tests/malloc/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/malloc/main.c b/tests/malloc/main.c index d5db60f845..82d7842203 100644 --- a/tests/malloc/main.c +++ b/tests/malloc/main.c @@ -28,7 +28,7 @@ #ifdef BOARD_NATIVE #define CHUNK_SIZE (1024 * 1024U) #else -#define CHUNK_SIZE (1024U) +#define CHUNK_SIZE (512U) #endif #endif