Use 1 as a random seed, as recommended in srandom(3). Adjust the random values
accordingly Submitted by: pho Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
362e0ab994
commit
62e17d5b26
@ -51,7 +51,11 @@ unsigned char *start[BLOCKTYPES] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
char result[100];
|
char result[100];
|
||||||
|
#if defined(__NetBSD__)
|
||||||
const char goodResult[] = "7b405d24bc03195474c70ddae9e1f8fb";
|
const char goodResult[] = "7b405d24bc03195474c70ddae9e1f8fb";
|
||||||
|
#else
|
||||||
|
const char goodResult[] = "217b4fbe456916bf62a2f85df752e4ab";
|
||||||
|
#endif
|
||||||
|
|
||||||
static void
|
static void
|
||||||
runTest(unsigned char *b1, unsigned char *b2)
|
runTest(unsigned char *b1, unsigned char *b2)
|
||||||
@ -89,7 +93,15 @@ ATF_TC_BODY(memcpy_basic, tc)
|
|||||||
start[2] = auto1;
|
start[2] = auto1;
|
||||||
start[3] = auto2;
|
start[3] = auto2;
|
||||||
|
|
||||||
|
#if defined(__NetBSD__)
|
||||||
srandom(0L);
|
srandom(0L);
|
||||||
|
#else
|
||||||
|
/*
|
||||||
|
* random() shall produce by default a sequence of numbers that can be
|
||||||
|
* duplicated by calling srandom() with 1 as the seed.
|
||||||
|
*/
|
||||||
|
srandom(1);
|
||||||
|
#endif
|
||||||
MD5Init(mc);
|
MD5Init(mc);
|
||||||
for (i = 0; i < BLOCKTYPES; ++i)
|
for (i = 0; i < BLOCKTYPES; ++i)
|
||||||
for (j = 0; j < BLOCKTYPES; ++j)
|
for (j = 0; j < BLOCKTYPES; ++j)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user