From d671070f6c3053b189b8ff324219dc55d63c4598 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 4 Aug 2023 13:20:16 +0200 Subject: reduce allocs for small systems with f.e. 64 MB RAM --- test/malloc/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/malloc/malloc.c b/test/malloc/malloc.c index ca7c5f9..e24ea3f 100644 --- a/test/malloc/malloc.c +++ b/test/malloc/malloc.c @@ -5,7 +5,7 @@ #include #define N_PTRS 1000 -#define N_ALLOCS 10000 +#define N_ALLOCS 1000 #define MAX_SIZE 0x10000 #define random_size() (random()%MAX_SIZE) -- cgit v1.2.3