Fix benchmark so the buffer is read each time.

The bytes.Buffer was exhausted after the first read.  Creating a new
reader each invocation catpures the correctly timing.
This commit is contained in:
Noah Campbell 2013-08-20 16:56:18 -07:00
parent 599e6672f7
commit 7461ed63ae

View file

@ -12,7 +12,8 @@ func BenchmarkParsePage(b *testing.B) {
sample.ReadFrom(f)
b.ResetTimer()
for i := 0; i < b.N; i++ {
ReadFrom(sample, "bench")
p, _ := ReadFrom(bytes.NewReader(sample.Bytes()), "bench")
p = p
}
}