diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-08-26 14:43:09 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-08-26 14:43:09 +0000 |
commit | 3ae2e8ddb38615434dccd5a6462faae144633d27 (patch) | |
tree | 61758501d271ded3dc0b48f8888e398c04606f39 /test/test.c | |
parent | d9d134c7ad07db84b3555d56e9ea388593e60fb2 (diff) | |
download | ChibiOS-3ae2e8ddb38615434dccd5a6462faae144633d27.tar.gz ChibiOS-3ae2e8ddb38615434dccd5a6462faae144633d27.tar.bz2 ChibiOS-3ae2e8ddb38615434dccd5a6462faae144633d27.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@409 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c index 1a0b9a4ec..96bd43938 100644 --- a/test/test.c +++ b/test/test.c @@ -24,6 +24,7 @@ #include "testsem.h"
#include "testmtx.h"
#include "testmsg.h"
+#include "testpools.h"
#include "testbmk.h"
/*
@@ -34,10 +35,15 @@ static const struct testcase *tests[] = { &testrdy2,
&testsem1,
&testsem2,
+#ifdef CH_USE_MUTEXES
&testmtx1,
&testmtx2,
&testmtx3,
+#endif
&testmsg1,
+#ifdef CH_USE_MEMPOOLS
+ &testpools1,
+#endif
&testbmk1,
&testbmk2,
&testbmk3,
|