summaryrefslogtreecommitdiffstats
path: root/testsuites/fstests/fstime
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-02 14:24:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-02 14:24:59 +0000
commit6fed43eabc0e78606cf80439c536a00be18fd743 (patch)
treef74fea0e1e6b46a7acea595ad70131a6b25f34df /testsuites/fstests/fstime
parent2011-08-02 Ricardo Aguirre <el.mastin@ymail.com> (diff)
downloadrtems-6fed43eabc0e78606cf80439c536a00be18fd743.tar.bz2
2011-08-02 Xiang Cui <medivhc@gmail.com>
* configure.ac, fserror/test.c, fslink/test.c, fspermission/test.c, fsrdwr/init.c, fssymlink/test.c, fstime/test.c, mdosfs_support/fs_config.h, mdosfs_support/fs_support.c, mimfs_support/fs_support.c, mrfs_support/fs_config.h, support/fstest.h, support/fstest_support.c, support/ramdisk_support.c, support/ramdisk_support.h: Perform first phase of clean up.
Diffstat (limited to 'testsuites/fstests/fstime')
-rw-r--r--testsuites/fstests/fstime/test.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/testsuites/fstests/fstime/test.c b/testsuites/fstests/fstime/test.c
index a0e30d94a7..bf2c215223 100644
--- a/testsuites/fstests/fstime/test.c
+++ b/testsuites/fstests/fstime/test.c
@@ -80,7 +80,7 @@ void time_test01 (void)
mtime2 = statbuf.st_mtime;
/*
- * Make sure they are the same
+ * Make sure they are the same
*/
rtems_test_assert (TIME_EQUAL (ctime1, mtime1));
@@ -98,7 +98,7 @@ void time_test01 (void)
mtime2 = statbuf.st_mtime;
/*
- * Make sure they are the same
+ * Make sure they are the same
*/
rtems_test_assert (TIME_EQUAL (ctime1, mtime1));
rtems_test_assert (TIME_EQUAL (ctime1, mtime2));
@@ -112,7 +112,7 @@ void time_test01 (void)
sleep (TIME_PRECISION);
/*
- * Create an empty directory
+ * Create an empty directory
*/
status = mkdir (dir01, mode);
rtems_test_assert (status == 0);
@@ -133,11 +133,11 @@ void time_test01 (void)
* truncate shall not modify the file offset for any open file
* descriptions associated with the file. Upon successful completion,
* if the file size is changed, this function shall mark for update
- * the st_ctime and st_mtime fields of the file
+ * the st_ctime and st_mtime fields of the file
*/
/*
- * file01 shall not update
+ * file01 shall not update
*/
status = stat (file01, &statbuf);
rtems_test_assert (status == 0);
@@ -160,7 +160,7 @@ void time_test01 (void)
rtems_test_assert (!TIME_EQUAL (ctime1, ctime2));
/*
- * Upon successful completion, mkdir() shall mark for update the
+ * Upon successful completion, mkdir() shall mark for update the
* 5st_atime, st_ctime, and st_mtime fields of the directory.
* Also, the st_ctime and st_mtime fields of the directory that
* contains the new entry shall be marked for update.
@@ -252,7 +252,7 @@ void time_test01 (void)
}
/*
- * These tests only get time_t value, and test
+ * These tests only get time_t value, and test
* if they are changed. Thest tests don't check atime
*/
void test (void)