Fixed timothy_tests/quick_tests
authorcodedraughtsman <codedraughtsman@users.noreply.github.com>
Mon, 31 May 2021 04:29:11 +0000 (16:29 +1200)
committercodedraughtsman <codedraughtsman@users.noreply.github.com>
Mon, 31 May 2021 04:29:11 +0000 (16:29 +1200)
One of the string buffers was to small and would not compile.
The string buffer's size was increased and it all compliles.

Note: the tests still fail due to a unrelated segfault, currently
fixing this.

direct/test-framework/timothy_tests/quick_tests/lib.c

index 5673ff18e78d5893e4697cfef5f910e1c1550a63..2063d2c667e701dcc1b02c0fa458bd81ba8a04b2 100644 (file)
@@ -136,7 +136,7 @@ int delete_dir(char *dir_name)
        yaffs_DIR *d;
        struct yaffs_dirent *de;
        struct yaffs_stat s;
-       char str[100];
+       char str[300];
        d = yaffs_opendir(dir_name);
        //printf("%s\n",dir_name);
        if(!d)