mirror of
https://github.com/vlang/v.git
synced 2025-09-15 23:42:28 +03:00
rand: simplify rand.PRNG, move to optional types for error handling (#13570)
This commit is contained in:
parent
5c0b7b0d05
commit
114a341f5f
49 changed files with 609 additions and 1586 deletions
|
@ -21,7 +21,7 @@ fn test_ws_ipv6() {
|
|||
if should_skip {
|
||||
return
|
||||
}
|
||||
port := 30000 + rand.intn(1024)
|
||||
port := 30000 + rand.intn(1024) or { 0 }
|
||||
go start_server(.ip6, port)
|
||||
time.sleep(500 * time.millisecond)
|
||||
ws_test(.ip6, 'ws://localhost:$port') or { assert false }
|
||||
|
@ -32,7 +32,7 @@ fn test_ws_ipv4() {
|
|||
if should_skip {
|
||||
return
|
||||
}
|
||||
port := 30000 + rand.intn(1024)
|
||||
port := 30000 + rand.intn(1024) or { 0 }
|
||||
go start_server(.ip, port)
|
||||
time.sleep(500 * time.millisecond)
|
||||
ws_test(.ip, 'ws://localhost:$port') or { assert false }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue