v/vlib/sync/channel_4_test.v

33 lines
534 B
V
Raw Normal View History

fn do_rec(ch chan int, resch chan i64) {
2020-08-06 15:28:19 +02:00
mut sum := i64(0)
for _ in 0 .. 2000 {
sum += <-ch
2020-08-06 15:28:19 +02:00
}
println(sum)
resch <- sum
2020-08-06 15:28:19 +02:00
}
fn do_send(ch chan int) {
2020-08-06 15:28:19 +02:00
for i in 0 .. 2000 {
ch <- i
2020-08-06 15:28:19 +02:00
}
}
fn test_channel_multi_buffered() {
ch := chan int{cap: 100}
resch := chan i64{}
go do_rec(ch, resch)
go do_rec(ch, resch)
go do_rec(ch, resch)
go do_rec(ch, resch)
go do_send(ch)
go do_send(ch)
go do_send(ch)
go do_send(ch)
2020-08-06 15:28:19 +02:00
mut sum := i64(0)
for _ in 0 .. 4 {
sum += <-resch
2020-08-06 15:28:19 +02:00
}
assert sum == i64(4) * 2000 * (2000 - 1) / 2
}