]> www.infradead.org Git - mtd-utils.git/commitdiff
fs-tests: integck: change tests defaults
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Mon, 11 Apr 2011 13:57:53 +0000 (16:57 +0300)
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Mon, 18 Apr 2011 14:44:44 +0000 (17:44 +0300)
Currently integck assumes that by default the file-system cannot
do shared writable mmap-ing and does not preserve accurate file
size after ENOSPC errors. And then it overrides these default
settings if this is UBIFS.

But it seems that only JFFS2 has those limitations. So make the
defaults to be the opposite and override them for JFFS2 only.

Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
tests/fs-tests/integrity/integck.c

index 92e37a1e6713b83b975ab00f0a4c212297c95fc9..ea3684b4b6d8750f9e98d134972c0ff3be031f77 100644 (file)
@@ -133,10 +133,10 @@ static uint64_t initial_free_space = 0; /* Free space on file system when
                                           test starts */
 static unsigned log10_initial_free_space = 0; /* log10 of initial_free_space */
 
-static int check_nospc_files = 0; /* Also check data in files that incurred a
+static int check_nospc_files = 1; /* Also check data in files that incurred a
                                     "no space" error */
 
-static int can_mmap = 0; /* Can write via mmap */
+static int can_mmap = 1; /* Can write via mmap */
 
 static long mem_page_size; /* Page size for mmap */
 
@@ -2027,16 +2027,19 @@ int main(int argc, char *argv[])
                        integck_get_description(), "n");
        if (!run_test)
                return 1;
+
        /* Change directory to the file system and check it is ok for testing */
        tests_check_test_file_system();
+
        /*
-        * We expect accurate file size from ubifs even after "no space"
-        * errors. And we can mmap.
+        * JFFS2 does not support shared writable mmap and it may report
+        * incorrect file size after "no space" errors.
         */
-       if (strcmp(tests_file_system_type, "ubifs") == 0) {
-               check_nospc_files = 1;
-               can_mmap = 1;
+       if (strcmp(tests_file_system_type, "jffs2") == 0) {
+               check_nospc_files = 0;
+               can_mmap = 0;
        }
+
        /* Do the actual test */
        integck();
        return 0;