aboutsummaryrefslogtreecommitdiffstats
path: root/test/test.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-07 19:14:15 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-07 19:14:15 +0000
commit330944e658f7a74a58d0d3157af3cafa1feaa3ea (patch)
treef8bca200ba940e32b19c4ca1a58daf486d158380 /test/test.c
parent4f8cb84a03321197557ed7df0a09abecfeb5166a (diff)
downloadChibiOS-330944e658f7a74a58d0d3157af3cafa1feaa3ea.tar.gz
ChibiOS-330944e658f7a74a58d0d3157af3cafa1feaa3ea.tar.bz2
ChibiOS-330944e658f7a74a58d0d3157af3cafa1feaa3ea.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@742 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/test.c')
-rw-r--r--test/test.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/test.c b/test/test.c
index 83be7410a..5300bce88 100644
--- a/test/test.c
+++ b/test/test.c
@@ -37,35 +37,35 @@
static const struct testcase *tests[] = {
&testrdy1,
&testrdy2,
-#ifdef CH_USE_SEMAPHORES
+#if CH_USE_SEMAPHORES
&testsem1,
&testsem2,
#endif
-#ifdef CH_USE_MUTEXES
+#if CH_USE_MUTEXES
&testmtx1,
&testmtx2,
&testmtx3,
-#ifdef CH_USE_CONDVARS
+#if CH_USE_CONDVARS
&testcond1,
&testcond2,
#endif
#endif
-#ifdef CH_USE_MESSAGES
+#if CH_USE_MESSAGES
&testmsg1,
#endif
-#ifdef CH_USE_EVENTS
+#if CH_USE_EVENTS
&testevt1,
#endif
-#ifdef CH_USE_HEAP
+#if CH_USE_HEAP
&testheap1,
#endif
-#ifdef CH_USE_MEMPOOLS
+#if CH_USE_MEMPOOLS
&testpools1,
#endif
-#if defined(CH_USE_DYNAMIC) && defined(CH_USE_HEAP)
+#if CH_USE_DYNAMIC && CH_USE_HEAP
&testdyn1,
#endif
-#if defined(CH_USE_DYNAMIC) && defined(CH_USE_MEMPOOLS)
+#if CH_USE_DYNAMIC && CH_USE_MEMPOOLS
&testdyn2,
#endif
&testbmk1,