diff --git a/testing/fstest/fstest_main.c b/testing/fstest/fstest_main.c index b171936e9..413aaa789 100644 --- a/testing/fstest/fstest_main.c +++ b/testing/fstest/fstest_main.c @@ -39,6 +39,7 @@ #include #include #include +#include /**************************************************************************** * Pre-processor Definitions @@ -200,8 +201,11 @@ static inline void fstest_randname(FAR struct fstest_filedesc_s *file) int i; dirlen = strlen(g_mountdir); - maxname = CONFIG_TESTING_FSTEST_MAXNAME - dirlen; - namelen = (rand() % maxname) + 1; + + /* Force the max filename lengh and also the min name len = 4 */ + + maxname = CONFIG_TESTING_FSTEST_MAXNAME - dirlen - 3; + namelen = (rand() % maxname) + 4; alloclen = namelen + dirlen; file->name = (FAR char *)malloc(alloclen + 1);