aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-03-25 14:59:40 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-03-25 14:59:40 +0000
commiteca81753c8acb5b99425c7ae8930d0f39d58a7a6 (patch)
tree5945a129bc8d6964281cf70567d0dfa5f60928b0 /test
parentc44880635c6c6f8b7b026c79ae5ec1e49e38541c (diff)
downloadChibiOS-eca81753c8acb5b99425c7ae8930d0f39d58a7a6.tar.gz
ChibiOS-eca81753c8acb5b99425c7ae8930d0f39d58a7a6.tar.bz2
ChibiOS-eca81753c8acb5b99425c7ae8930d0f39d58a7a6.zip
Fixed bug #931.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11852 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'test')
-rw-r--r--test/mfs/configuration.xml2
-rw-r--r--test/mfs/source/test/mfs_test_sequence_001.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/test/mfs/configuration.xml b/test/mfs/configuration.xml
index 04997992a..d89368ebc 100644
--- a/test/mfs/configuration.xml
+++ b/test/mfs/configuration.xml
@@ -328,7 +328,7 @@ test_assert(err == MFS_ERR_NOT_FOUND , "record was already present");]]></value>
</step>
<step>
<description>
- <value>Creating the record then retrieving it again, MFS_ERR_NOT_FOUND is expected, record content and size are compared with the original.</value>
+ <value>Creating the record then retrieving it again, MFS_NO_ERROR is expected, record content and size are compared with the original.</value>
</description>
<tags>
<value />
diff --git a/test/mfs/source/test/mfs_test_sequence_001.c b/test/mfs/source/test/mfs_test_sequence_001.c
index f25c12746..7804fcd80 100644
--- a/test/mfs/source/test/mfs_test_sequence_001.c
+++ b/test/mfs/source/test/mfs_test_sequence_001.c
@@ -222,9 +222,9 @@ static const testcase_t mfs_test_001_002 = {
* <h2>Test Steps</h2>
* - [1.3.1] The record must not already exists, MFS_ERR_NOT_FOUND is
* expected.
- * - [1.3.2] Creating the record then retrieving it again,
- * MFS_ERR_NOT_FOUND is expected, record content and size are
- * compared with the original.
+ * - [1.3.2] Creating the record then retrieving it again, MFS_NO_ERROR
+ * is expected, record content and size are compared with the
+ * original.
* - [1.3.3] Updating the record then retrieving it again, MFS_NO_ERROR
* is expected, record content and size are compared with the
* original.
@@ -254,9 +254,9 @@ static void mfs_test_001_003_execute(void) {
test_assert(err == MFS_ERR_NOT_FOUND , "record was already present");
}
- /* [1.3.2] Creating the record then retrieving it again,
- MFS_ERR_NOT_FOUND is expected, record content and size are
- compared with the original.*/
+ /* [1.3.2] Creating the record then retrieving it again, MFS_NO_ERROR
+ is expected, record content and size are compared with the
+ original.*/
test_set_step(2);
{
mfs_error_t err;