summaryrefslogtreecommitdiff
path: root/pool_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pool_test.go')
-rw-r--r--pool_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pool_test.go b/pool_test.go
index 88926a9b..bb16fe4c 100644
--- a/pool_test.go
+++ b/pool_test.go
@@ -8,6 +8,7 @@ import (
"sync"
"testing"
"time"
+ "log"
)
var cfg = Config{
@@ -173,6 +174,7 @@ func Benchmark_Pool_Echo_Batched(b *testing.B) {
)
defer p.Destroy()
+ s := time.Now()
var wg sync.WaitGroup
for i := 0; i < b.N; i++ {
wg.Add(1)
@@ -185,6 +187,8 @@ func Benchmark_Pool_Echo_Batched(b *testing.B) {
}
wg.Wait()
+
+ log.Println(b.N / int(time.Now().Sub(s).Seconds()))
}
func Benchmark_Pool_Echo_Replaced(b *testing.B) {