aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-10-07 12:06:42 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-10-07 12:06:42 +0000
commit8bd7175893bc05ed967b44da1977d6c5108c6afa (patch)
treefcf0cdad790783413636d0db228af534013616d7 /test
parentdc7ae21c744272f7796386c4a8ad68cb41278359 (diff)
downloadChibiOS-8bd7175893bc05ed967b44da1977d6c5108c6afa.tar.gz
ChibiOS-8bd7175893bc05ed967b44da1977d6c5108c6afa.tar.bz2
ChibiOS-8bd7175893bc05ed967b44da1977d6c5108c6afa.zip
Renamed for consistency.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12347 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'test')
-rw-r--r--test/mfs/configuration.xml8
-rw-r--r--test/mfs/source/test/mfs_test_root.c2
-rw-r--r--test/mfs/source/test/mfs_test_root.h2
-rw-r--r--test/mfs/source/test/mfs_test_sequence_001.c2
-rw-r--r--test/mfs/source/test/mfs_test_sequence_002.c2
5 files changed, 8 insertions, 8 deletions
diff --git a/test/mfs/configuration.xml b/test/mfs/configuration.xml
index d89368ebc..a222033f8 100644
--- a/test/mfs/configuration.xml
+++ b/test/mfs/configuration.xml
@@ -38,7 +38,7 @@
<value>mfs_</value>
</code_prefix>
<global_definitions>
- <value><![CDATA[#include "mfs.h"
+ <value><![CDATA[#include "hal_mfs.h"
#define TEST_SUITE_NAME "ChibiOS/HAL MFS Test Suite"
@@ -53,7 +53,7 @@ flash_error_t bank_verify_erased(mfs_bank_t bank);
void test_print_mfs_info(void);]]></value>
</global_definitions>
<global_code>
- <value><![CDATA[#include "mfs.h"
+ <value><![CDATA[#include "hal_mfs.h"
MFSDriver mfs1;
uint8_t mfs_buffer[512];
@@ -128,7 +128,7 @@ flash_error_t bank_verify_erased(mfs_bank_t bank) {
</condition>
<shared_code>
<value><![CDATA[#include <string.h>
-#include "mfs.h"
+#include "hal_mfs.h"
static const uint8_t pattern1[] = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
@@ -879,7 +879,7 @@ test_assert(bank_verify_erased(MFS_BANK_0) == FLASH_NO_ERROR, "bank 0 not erased
<value />
</condition>
<shared_code>
- <value><![CDATA[#include "mfs.h"]]></value>
+ <value><![CDATA[#include "hal_mfs.h"]]></value>
</shared_code>
<cases>
<case>
diff --git a/test/mfs/source/test/mfs_test_root.c b/test/mfs/source/test/mfs_test_root.c
index ce23aaac6..447278610 100644
--- a/test/mfs/source/test/mfs_test_root.c
+++ b/test/mfs/source/test/mfs_test_root.c
@@ -61,7 +61,7 @@ const testsuite_t mfs_test_suite = {
/* Shared code. */
/*===========================================================================*/
-#include "mfs.h"
+#include "hal_mfs.h"
MFSDriver mfs1;
uint8_t mfs_buffer[512];
diff --git a/test/mfs/source/test/mfs_test_root.h b/test/mfs/source/test/mfs_test_root.h
index 4679c0c96..672b7da80 100644
--- a/test/mfs/source/test/mfs_test_root.h
+++ b/test/mfs/source/test/mfs_test_root.h
@@ -46,7 +46,7 @@ extern "C" {
/* Shared definitions. */
/*===========================================================================*/
-#include "mfs.h"
+#include "hal_mfs.h"
#define TEST_SUITE_NAME "ChibiOS/HAL MFS Test Suite"
diff --git a/test/mfs/source/test/mfs_test_sequence_001.c b/test/mfs/source/test/mfs_test_sequence_001.c
index 7804fcd80..272924bd4 100644
--- a/test/mfs/source/test/mfs_test_sequence_001.c
+++ b/test/mfs/source/test/mfs_test_sequence_001.c
@@ -45,7 +45,7 @@
****************************************************************************/
#include <string.h>
-#include "mfs.h"
+#include "hal_mfs.h"
static const uint8_t pattern1[] = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
diff --git a/test/mfs/source/test/mfs_test_sequence_002.c b/test/mfs/source/test/mfs_test_sequence_002.c
index c8cbfe6d5..735b359df 100644
--- a/test/mfs/source/test/mfs_test_sequence_002.c
+++ b/test/mfs/source/test/mfs_test_sequence_002.c
@@ -39,7 +39,7 @@
* Shared code.
****************************************************************************/
-#include "mfs.h"
+#include "hal_mfs.h"
/****************************************************************************
* Test cases.