aboutsummaryrefslogtreecommitdiffstats
path: root/test/testpools.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testpools.c')
-rw-r--r--test/testpools.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testpools.c b/test/testpools.c
index 40a31fad7..2d3ee0f00 100644
--- a/test/testpools.c
+++ b/test/testpools.c
@@ -42,11 +42,11 @@ static void pools1_execute(void) {
int i;
/* Adding the WAs to the pool. */
- for (i = 0; i < 5; i++)
+ for (i = 0; i < MAX_THREADS; i++)
chPoolFree(&mp1, wa[i]);
/* Empting the pool again. */
- for (i = 0; i < 5; i++)
+ for (i = 0; i < MAX_THREADS; i++)
test_assert(chPoolAlloc(&mp1) != NULL, "pool list empty");
/* Now must be empty. */