aboutsummaryrefslogtreecommitdiffstats
path: root/test/test.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-11-09 11:45:37 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-11-09 11:45:37 +0000
commit0dd1ffc0882d6355dde36502c84ddc82822eb9c3 (patch)
tree2cc26bb9b4fecd97ce8227035a209e6bd5fba621 /test/test.c
parent6776d069274223f061f9f4e15e5732a7b454bd51 (diff)
downloadChibiOS-0dd1ffc0882d6355dde36502c84ddc82822eb9c3.tar.gz
ChibiOS-0dd1ffc0882d6355dde36502c84ddc82822eb9c3.tar.bz2
ChibiOS-0dd1ffc0882d6355dde36502c84ddc82822eb9c3.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@506 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/test.c')
-rw-r--r--test/test.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c
index 9a1af1725..b603a20b8 100644
--- a/test/test.c
+++ b/test/test.c
@@ -23,6 +23,7 @@
#include "testrdy.h"
#include "testsem.h"
#include "testmtx.h"
+#include "testcond.h"
#include "testmsg.h"
#include "testevt.h"
#include "testheap.h"
@@ -44,6 +45,10 @@ static const struct testcase *tests[] = {
&testmtx1,
&testmtx2,
&testmtx3,
+#ifdef CH_USE_CONDVARS
+ &testcond1,
+ &testcond2,
+#endif
#endif
#ifdef CH_USE_MESSAGES
&testmsg1,