1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 18:10:54 +00:00

cors test benchmark doesn't use b.N

This commit is contained in:
nkbai 2015-12-19 10:29:12 +08:00
parent 3daaaeb32b
commit 083c155079

View File

@ -225,8 +225,8 @@ func Benchmark_WithoutCORS(b *testing.B) {
ctx.Output.SetStatus(500) ctx.Output.SetStatus(500)
}) })
b.ResetTimer() b.ResetTimer()
for i := 0; i < 100; i++ {
r, _ := http.NewRequest("PUT", "/foo", nil) r, _ := http.NewRequest("PUT", "/foo", nil)
for i := 0; i < b.N; i++ {
handler.ServeHTTP(recorder, r) handler.ServeHTTP(recorder, r)
} }
} }
@ -246,8 +246,8 @@ func Benchmark_WithCORS(b *testing.B) {
ctx.Output.SetStatus(500) ctx.Output.SetStatus(500)
}) })
b.ResetTimer() b.ResetTimer()
for i := 0; i < 100; i++ {
r, _ := http.NewRequest("PUT", "/foo", nil) r, _ := http.NewRequest("PUT", "/foo", nil)
for i := 0; i < b.N; i++ {
handler.ServeHTTP(recorder, r) handler.ServeHTTP(recorder, r)
} }
} }