mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 07:37:20 +00:00
log: using testing.B.Loop (#32663)
before: go test -run=^$ -bench=. ./log -timeout=1h 12.19s user 2.19s system 89% cpu 16.025 total after: go test -run=^$ -bench=. ./log -timeout=1h 10.64s user 1.53s system 89% cpu 13.607 total --------- Co-authored-by: lightclient <lightclient@protonmail.com>
This commit is contained in:
parent
3ebb1431d3
commit
9b1896bfb5
2 changed files with 11 additions and 10 deletions
|
|
@ -10,7 +10,7 @@ var sink []byte
|
||||||
func BenchmarkPrettyInt64Logfmt(b *testing.B) {
|
func BenchmarkPrettyInt64Logfmt(b *testing.B) {
|
||||||
buf := make([]byte, 100)
|
buf := make([]byte, 100)
|
||||||
b.ReportAllocs()
|
b.ReportAllocs()
|
||||||
for i := 0; i < b.N; i++ {
|
for b.Loop() {
|
||||||
sink = appendInt64(buf, rand.Int63())
|
sink = appendInt64(buf, rand.Int63())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -18,7 +18,7 @@ func BenchmarkPrettyInt64Logfmt(b *testing.B) {
|
||||||
func BenchmarkPrettyUint64Logfmt(b *testing.B) {
|
func BenchmarkPrettyUint64Logfmt(b *testing.B) {
|
||||||
buf := make([]byte, 100)
|
buf := make([]byte, 100)
|
||||||
b.ReportAllocs()
|
b.ReportAllocs()
|
||||||
for i := 0; i < b.N; i++ {
|
for b.Loop() {
|
||||||
sink = appendUint64(buf, rand.Uint64(), false)
|
sink = appendUint64(buf, rand.Uint64(), false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -70,9 +70,10 @@ func TestJSONHandler(t *testing.T) {
|
||||||
|
|
||||||
func BenchmarkTraceLogging(b *testing.B) {
|
func BenchmarkTraceLogging(b *testing.B) {
|
||||||
SetDefault(NewLogger(NewTerminalHandler(io.Discard, true)))
|
SetDefault(NewLogger(NewTerminalHandler(io.Discard, true)))
|
||||||
b.ResetTimer()
|
i := 0
|
||||||
for i := 0; i < b.N; i++ {
|
for b.Loop() {
|
||||||
Trace("a message", "v", i)
|
Trace("a message", "v", i)
|
||||||
|
i++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -99,8 +100,8 @@ func benchmarkLogger(b *testing.B, l Logger) {
|
||||||
err = errors.New("oh nooes it's crap")
|
err = errors.New("oh nooes it's crap")
|
||||||
)
|
)
|
||||||
b.ReportAllocs()
|
b.ReportAllocs()
|
||||||
b.ResetTimer()
|
i := 0
|
||||||
for i := 0; i < b.N; i++ {
|
for b.Loop() {
|
||||||
l.Info("This is a message",
|
l.Info("This is a message",
|
||||||
"foo", int16(i),
|
"foo", int16(i),
|
||||||
"bytes", bb,
|
"bytes", bb,
|
||||||
|
|
@ -109,8 +110,8 @@ func benchmarkLogger(b *testing.B, l Logger) {
|
||||||
"bigint", bigint,
|
"bigint", bigint,
|
||||||
"nilbig", nilbig,
|
"nilbig", nilbig,
|
||||||
"err", err)
|
"err", err)
|
||||||
|
i++
|
||||||
}
|
}
|
||||||
b.StopTimer()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestLoggerOutput(t *testing.T) {
|
func TestLoggerOutput(t *testing.T) {
|
||||||
|
|
@ -161,18 +162,18 @@ const termTimeFormat = "01-02|15:04:05.000"
|
||||||
func BenchmarkAppendFormat(b *testing.B) {
|
func BenchmarkAppendFormat(b *testing.B) {
|
||||||
var now = time.Now()
|
var now = time.Now()
|
||||||
b.Run("fmt time.Format", func(b *testing.B) {
|
b.Run("fmt time.Format", func(b *testing.B) {
|
||||||
for i := 0; i < b.N; i++ {
|
for b.Loop() {
|
||||||
fmt.Fprintf(io.Discard, "%s", now.Format(termTimeFormat))
|
fmt.Fprintf(io.Discard, "%s", now.Format(termTimeFormat))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
b.Run("time.AppendFormat", func(b *testing.B) {
|
b.Run("time.AppendFormat", func(b *testing.B) {
|
||||||
for i := 0; i < b.N; i++ {
|
for b.Loop() {
|
||||||
now.AppendFormat(nil, termTimeFormat)
|
now.AppendFormat(nil, termTimeFormat)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
var buf = new(bytes.Buffer)
|
var buf = new(bytes.Buffer)
|
||||||
b.Run("time.Custom", func(b *testing.B) {
|
b.Run("time.Custom", func(b *testing.B) {
|
||||||
for i := 0; i < b.N; i++ {
|
for b.Loop() {
|
||||||
writeTimeTermFormat(buf, now)
|
writeTimeTermFormat(buf, now)
|
||||||
buf.Reset()
|
buf.Reset()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue