From 8c83e9a2bb34665eddae061cb4a0b42704634087 Mon Sep 17 00:00:00 2001 From: Chen Yufei Date: Sun, 13 Jan 2013 20:29:36 +0800 Subject: [PATCH] Remove total time report in benchmark. --- cmd/shadowsocks-httpget/httpget.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/shadowsocks-httpget/httpget.go b/cmd/shadowsocks-httpget/httpget.go index 840e5d7c..bff39bce 100644 --- a/cmd/shadowsocks-httpget/httpget.go +++ b/cmd/shadowsocks-httpget/httpget.go @@ -156,7 +156,6 @@ func main() { varSum += di } stddev := math.Sqrt(varSum / float64(reqDone)) - fmt.Println("\ntotal time used:", time.Duration(sum)) - fmt.Println("average time per request:", time.Duration(avg)) + fmt.Println("\naverage time per request:", time.Duration(avg)) fmt.Println("standard deviation:", time.Duration(stddev)) }