diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/testdyn.c | 2 | ||||
-rw-r--r-- | test/testheap.c | 4 | ||||
-rw-r--r-- | test/testpools.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/test/testdyn.c b/test/testdyn.c index 07c3f92a0..5b024544f 100644 --- a/test/testdyn.c +++ b/test/testdyn.c @@ -145,7 +145,7 @@ static char *dyn2_gettest(void) { static void dyn2_setup(void) {
- chPoolInit(&mp1, THD_WA_SIZE(THREADS_STACK_SIZE));
+ chPoolInit(&mp1, THD_WA_SIZE(THREADS_STACK_SIZE), NULL);
}
static void dyn2_execute(void) {
diff --git a/test/testheap.c b/test/testheap.c index ce127d2be..fe06a0cf5 100644 --- a/test/testheap.c +++ b/test/testheap.c @@ -25,10 +25,10 @@ * @page test_heap Memory Heap test
*
* <h2>Description</h2>
- * This module implements the test sequence for the @ref heap subsystem.
+ * This module implements the test sequence for the @ref heaps subsystem.
*
* <h2>Objective</h2>
- * Objective of the test module is to cover 100% of the @ref heap subsystem.
+ * Objective of the test module is to cover 100% of the @ref heaps subsystem.
*
* <h2>Preconditions</h2>
* The module requires the following kernel options:
diff --git a/test/testpools.c b/test/testpools.c index 97356126e..b48290b87 100644 --- a/test/testpools.c +++ b/test/testpools.c @@ -48,7 +48,7 @@ #if CH_USE_MEMPOOLS
-static MEMORYPOOL_DECL(mp1, THD_WA_SIZE(THREADS_STACK_SIZE));
+static MEMORYPOOL_DECL(mp1, THD_WA_SIZE(THREADS_STACK_SIZE), NULL);
/**
* @page test_pools_001 Allocation and enqueuing test
@@ -66,7 +66,7 @@ static char *pools1_gettest(void) { static void pools1_setup(void) {
- chPoolInit(&mp1, THD_WA_SIZE(THREADS_STACK_SIZE));
+ chPoolInit(&mp1, THD_WA_SIZE(THREADS_STACK_SIZE), NULL);
}
static void pools1_execute(void) {
|