crypto.rand: fix rand test from failing sometimes

pull/2047/head
joe-conigliaro 2019-09-19 20:12:40 +10:00 committed by Alexander Medvednikov
parent 153c6d5416
commit 486b3d2f92
1 changed files with 16 additions and 9 deletions

View File

@ -30,14 +30,21 @@ fn test_crypto_rand_read() {
}
fn test_crypto_rand_int_u64() {
max := u64(200)
r1 := rand.int_u64(max) or {
max := u64(160)
mut unique := []int
for _ in 0..80 {
r := rand.int_u64(max) or {
assert false
return
}
r2 := rand.int_u64(max) or {
if r >= max {
assert false
return
}
assert r1 > u64(0) && r2 > u64(0) && r1 < max && r2 < max
n := int(r)
if !(n in unique) {
unique << n
}
}
assert unique.len >= 40
}