From fe5ec03feba87a1070bb260550758d699fb02e54 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sat, 4 May 2024 06:19:10 +0200 Subject: reduce allocs for small noMMU systems --- test/malloc/malloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/malloc/malloc.c b/test/malloc/malloc.c index e24ea3f..24dc69b 100644 --- a/test/malloc/malloc.c +++ b/test/malloc/malloc.c @@ -4,8 +4,8 @@ #include #include -#define N_PTRS 1000 -#define N_ALLOCS 1000 +#define N_PTRS 100 +#define N_ALLOCS 100 #define MAX_SIZE 0x10000 #define random_size() (random()%MAX_SIZE) -- cgit v1.2.3