From b1e6e05756723ffd9fe6c748fac11c139892259f Mon Sep 17 00:00:00 2001 From: Andy Pan Date: Fri, 31 Aug 2018 23:13:22 +0800 Subject: [PATCH] update --- ants_test.go | 40 +--------------------------------------- 1 file changed, 1 insertion(+), 39 deletions(-) diff --git a/ants_test.go b/ants_test.go index 83519e8..aff9053 100644 --- a/ants_test.go +++ b/ants_test.go @@ -130,42 +130,4 @@ func TestCodeCov(t *testing.T) { p.ReSize(TestSize) p.ReSize(AntsSize) t.Logf("pool with func, after resize, capacity:%d, running:%d", p.Cap(), p.Running()) -} - -// func TestNoPool(t *testing.T) { -// var wg sync.WaitGroup -// for i := 0; i < n; i++ { -// wg.Add(1) -// go func() { -// demoPoolFunc(n) -// wg.Done() -// }() -// } - -// wg.Wait() -// mem := runtime.MemStats{} -// runtime.ReadMemStats(&mem) -// t.Logf("memory usage:%d", mem.TotalAlloc/GiB) -// } - -//func TestCustomPool(t *testing.T) { -// p, _ := ants.NewPool(30000) -// var wg sync.WaitGroup -// for i := 0; i < n; i++ { -// wg.Add(1) -// p.Submit(func() { -// demoFunc() -// //demoFunc() -// wg.Done() -// }) -// } -// wg.Wait() -// -// //t.Logf("pool capacity:%d", p.Cap()) -// //t.Logf("free workers number:%d", p.Free()) -// -// t.Logf("running workers number:%d", p.Running()) -// mem := runtime.MemStats{} -// runtime.ReadMemStats(&mem) -// t.Logf("memory usage:%d", mem.TotalAlloc/1024) -//} +} \ No newline at end of file