1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

crypto.rand: fix rand test from failing sometimes

This commit is contained in:
joe-conigliaro 2019-09-19 20:12:40 +10:00 committed by Alexander Medvednikov
parent 153c6d5416
commit 486b3d2f92

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 {
assert false
return
max := u64(160)
mut unique := []int
for _ in 0..80 {
r := rand.int_u64(max) or {
assert false
return
}
if r >= max {
assert false
return
}
n := int(r)
if !(n in unique) {
unique << n
}
}
r2 := rand.int_u64(max) or {
assert false
return
}
assert r1 > u64(0) && r2 > u64(0) && r1 < max && r2 < max
assert unique.len >= 40
}