From da898e649c992119ed0895965e4e6079616ebef3 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Tue, 21 Jul 2020 13:21:38 +0200 Subject: [PATCH] tests/malloc: reduce chunk size to 128b Otherwise, the test fails on z1 (with no allocations). --- 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 82d7842203..4133a2f729 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 (512U) +#define CHUNK_SIZE (128U) #endif #endif