blob: d07276b0d512bcd44f83757d99e07beec41622c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
fn do_rec(ch chan int, resch chan i64) {
mut sum := i64(0)
for _ in 0 .. 2000 {
sum += <-ch
}
println(sum)
resch <- sum
}
fn do_send(ch chan int) {
for i in 0 .. 2000 {
ch <- i
}
}
fn test_channel_multi_unbuffered() {
ch := chan int{}
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)
mut sum := i64(0)
for _ in 0 .. 4 {
sum += <-resch
}
assert sum == i64(4) * 2000 * (2000 - 1) / 2
}
|