diff options
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 5 |
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,
|