diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/coverage/chcore.c | 4 | ||||
-rw-r--r-- | test/coverage/main.c | 6 | ||||
-rw-r--r-- | test/coverage/serial_lld.c | 4 | ||||
-rw-r--r-- | test/test.c | 2 | ||||
-rw-r--r-- | test/testbmk.c | 3 | ||||
-rw-r--r-- | test/testdyn.c | 3 | ||||
-rw-r--r-- | test/testevt.c | 3 | ||||
-rw-r--r-- | test/testheap.c | 3 | ||||
-rw-r--r-- | test/testmbox.c | 3 | ||||
-rw-r--r-- | test/testmsg.c | 3 | ||||
-rw-r--r-- | test/testmtx.c | 3 | ||||
-rw-r--r-- | test/testpools.c | 3 | ||||
-rw-r--r-- | test/testqueues.c | 3 | ||||
-rw-r--r-- | test/testsem.c | 3 | ||||
-rw-r--r-- | test/testthd.c | 3 |
15 files changed, 19 insertions, 30 deletions
diff --git a/test/coverage/chcore.c b/test/coverage/chcore.c index 6b934ad9a..3863a9b83 100644 --- a/test/coverage/chcore.c +++ b/test/coverage/chcore.c @@ -25,8 +25,8 @@ * @{
*/
-#include <ch.h>
-#include <serial.h>
+#include "ch.h"
+#include "hal.h"
static LARGE_INTEGER nextcnt;
static LARGE_INTEGER slice;
diff --git a/test/coverage/main.c b/test/coverage/main.c index 923fb12c2..929ed622e 100644 --- a/test/coverage/main.c +++ b/test/coverage/main.c @@ -20,9 +20,9 @@ #include <string.h>
#include <stdio.h>
-#include <ch.h>
-#include <serial.h>
-#include <test.h>
+#include "ch.h"
+#include "hal.h"
+#include "test.h"
/*
* Simulator main.
diff --git a/test/coverage/serial_lld.c b/test/coverage/serial_lld.c index e1f3897a1..512a6ebc1 100644 --- a/test/coverage/serial_lld.c +++ b/test/coverage/serial_lld.c @@ -27,8 +27,8 @@ #include <windows.h>
#include <stdio.h>
-#include <ch.h>
-#include <serial.h>
+#include "ch.h"
+#include "hal.h"
/** @brief Test serial driver identifier.*/
SerialDriver SD1;
diff --git a/test/test.c b/test/test.c index 7a9ad51fc..f4272ca14 100644 --- a/test/test.c +++ b/test/test.c @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
+#include "ch.h"
#include "test.h"
#include "testthd.h"
diff --git a/test/testbmk.c b/test/testbmk.c index 534ac8a81..35a193221 100644 --- a/test/testbmk.c +++ b/test/testbmk.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
diff --git a/test/testdyn.c b/test/testdyn.c index 5b024544f..943662e0d 100644 --- a/test/testdyn.c +++ b/test/testdyn.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
diff --git a/test/testevt.c b/test/testevt.c index ab9b999ca..2bd704696 100644 --- a/test/testevt.c +++ b/test/testevt.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
diff --git a/test/testheap.c b/test/testheap.c index fe06a0cf5..e157d1c54 100644 --- a/test/testheap.c +++ b/test/testheap.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
diff --git a/test/testmbox.c b/test/testmbox.c index 3c23cf937..a8947e4ce 100644 --- a/test/testmbox.c +++ b/test/testmbox.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
diff --git a/test/testmsg.c b/test/testmsg.c index 015639d16..0c920670a 100644 --- a/test/testmsg.c +++ b/test/testmsg.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
diff --git a/test/testmtx.c b/test/testmtx.c index e2101ae4d..755545593 100644 --- a/test/testmtx.c +++ b/test/testmtx.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
diff --git a/test/testpools.c b/test/testpools.c index b48290b87..71b1dd230 100644 --- a/test/testpools.c +++ b/test/testpools.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
diff --git a/test/testqueues.c b/test/testqueues.c index e5e3a4c0b..6989442c4 100644 --- a/test/testqueues.c +++ b/test/testqueues.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
diff --git a/test/testsem.c b/test/testsem.c index a49509a91..79c42c52f 100644 --- a/test/testsem.c +++ b/test/testsem.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
diff --git a/test/testthd.c b/test/testthd.c index bc9b40cd1..76110f444 100644 --- a/test/testthd.c +++ b/test/testthd.c @@ -17,8 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ch.h>
-
+#include "ch.h"
#include "test.h"
/**
|