blob: 3357f7ad89ec7682839d2d780d179ff58e053312 [file] [log] [blame]
package benchmarks
import (
"runtime"
"testing"
)
func BenchmarkNonBlockingOneGoroutine(b *testing.B) {
benchmarkNonBlocking(b)
}
func BenchmarkNonBlockingTwoGoroutines(b *testing.B) {
runtime.GOMAXPROCS(2)
benchmarkNonBlocking(b)
runtime.GOMAXPROCS(1)
}
func benchmarkNonBlocking(b *testing.B) {
iterations := int64(b.N)
b.ReportAllocs()
b.ResetTimer()
channel := make(chan int64, 1024*16)
go func() {
for i := int64(0); i < iterations; {
select {
case channel <- i:
i++
default:
continue
}
}
}()
for i := int64(0); i < iterations; {
select {
case msg := <-channel:
if msg != i {
panic("Out of sequence")
} else {
i++
}
default:
continue
}
}
}