aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-10-20 17:26:27 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-10-20 17:26:27 +0000
commit7d689a5fae4f0950c8cb8e291744465ea5d2ca93 (patch)
treed9b262059d69cbe25cdcf1c9aa4f0e6f2f342337 /test
parent2c41c0d442aa3cea412fba318d4fe0a7cfd276d6 (diff)
downloadChibiOS-7d689a5fae4f0950c8cb8e291744465ea5d2ca93.tar.gz
ChibiOS-7d689a5fae4f0950c8cb8e291744465ea5d2ca93.tar.bz2
ChibiOS-7d689a5fae4f0950c8cb8e291744465ea5d2ca93.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1242 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test')
-rw-r--r--test/testdyn.c2
-rw-r--r--test/testheap.c4
-rw-r--r--test/testpools.c4
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) {