diff options
author | ngie <ngie@FreeBSD.org> | 2014-10-13 02:27:59 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2014-10-13 02:27:59 +0000 |
commit | 62e17d5b26e52ce8b87a1ada46b99bf64ba8db19 (patch) | |
tree | 40726771d0d1b6e106e6c10b9bf758176c668945 /contrib/netbsd-tests/lib/libc/string | |
parent | 362e0ab994b3958dacb21b1efbff0ffc4d02074d (diff) | |
download | FreeBSD-src-62e17d5b26e52ce8b87a1ada46b99bf64ba8db19.zip FreeBSD-src-62e17d5b26e52ce8b87a1ada46b99bf64ba8db19.tar.gz |
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
Diffstat (limited to 'contrib/netbsd-tests/lib/libc/string')
-rw-r--r-- | contrib/netbsd-tests/lib/libc/string/t_memcpy.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/lib/libc/string/t_memcpy.c b/contrib/netbsd-tests/lib/libc/string/t_memcpy.c index 6485a88..c9e52a3 100644 --- a/contrib/netbsd-tests/lib/libc/string/t_memcpy.c +++ b/contrib/netbsd-tests/lib/libc/string/t_memcpy.c @@ -51,7 +51,11 @@ unsigned char *start[BLOCKTYPES] = { }; char result[100]; +#if defined(__NetBSD__) const char goodResult[] = "7b405d24bc03195474c70ddae9e1f8fb"; +#else +const char goodResult[] = "217b4fbe456916bf62a2f85df752e4ab"; +#endif static void runTest(unsigned char *b1, unsigned char *b2) @@ -89,7 +93,15 @@ ATF_TC_BODY(memcpy_basic, tc) start[2] = auto1; start[3] = auto2; +#if defined(__NetBSD__) 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); for (i = 0; i < BLOCKTYPES; ++i) for (j = 0; j < BLOCKTYPES; ++j) |