Revert "Fix benchmark alignment"

This reverts commit 008dfb4ee8.
This commit is contained in:
Miek Gieben 2014-01-28 22:43:57 +00:00
parent 9ba617e870
commit b8e6bd45be
2 changed files with 3 additions and 5 deletions

View File

@ -242,8 +242,7 @@ func TestMsgLenTest(t *testing.T) {
}
}
// Padded to fix alignment
func BenchmarkMsgLen____(b *testing.B) {
func BenchmarkMsgLen(b *testing.B) {
b.StopTimer()
makeMsg := func(question string, ans, ns, e []RR) *Msg {
msg := new(Msg)

View File

@ -65,8 +65,7 @@ func TestServing(t *testing.T) {
}
}
// Padded to fix alignment
func BenchmarkServe____(b *testing.B) {
func BenchmarkServing(b *testing.B) {
b.StopTimer()
HandleFunc("miek.nl.", HelloServer)
a := runtime.GOMAXPROCS(4)
@ -93,7 +92,7 @@ func HelloServerCompress(w ResponseWriter, req *Msg) {
w.WriteMsg(m)
}
func BenchmarkServeCompress(b *testing.B) {
func BenchmarkServingCompress(b *testing.B) {
b.StopTimer()
HandleFunc("miek.nl.", HelloServerCompress)
a := runtime.GOMAXPROCS(4)