From 1f97e8d9d63006ea45f72aad3ba0df43262a0782 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Sat, 28 Nov 2015 22:58:52 +0200 Subject: [PATCH] Added timing test for AppendUint --- bytesconv_timing_test.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/bytesconv_timing_test.go b/bytesconv_timing_test.go index 387a3f9..10299e4 100644 --- a/bytesconv_timing_test.go +++ b/bytesconv_timing_test.go @@ -4,6 +4,20 @@ import ( "testing" ) +func BenchmarkAppendUint(b *testing.B) { + b.RunParallel(func(pb *testing.PB) { + var buf []byte + i := 0 + for pb.Next() { + buf = AppendUint(buf[:0], i) + i++ + if i > 0x7fffffff { + i = 0 + } + } + }) +} + func BenchmarkLowercaseBytesNoop(b *testing.B) { src := []byte("foobarbaz_lowercased_all") b.RunParallel(func(pb *testing.PB) {