fstest: Force the minimum filename to 4 to avoid collisions
This commit is contained in:
parent
abd444f9ce
commit
f3828ccbca
@ -39,6 +39,7 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <crc32.h>
|
#include <crc32.h>
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Pre-processor Definitions
|
* Pre-processor Definitions
|
||||||
@ -200,8 +201,11 @@ static inline void fstest_randname(FAR struct fstest_filedesc_s *file)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
dirlen = strlen(g_mountdir);
|
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;
|
alloclen = namelen + dirlen;
|
||||||
|
|
||||||
file->name = (FAR char *)malloc(alloclen + 1);
|
file->name = (FAR char *)malloc(alloclen + 1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user