blob: 2b485652d7b6128c3f3f724be842524a1012d362 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package errors
import (
"fmt"
"testing"
)
func BenchmarkWrap(b *testing.B) {
err := New("foo")
args := func(a ...interface{}) []interface{} { return a }
benchCases := []struct {
name string
format string
args []interface{}
msg string
err error
}{
{"wrap", "msg: %w", args(err), "wrap", err},
}
for _, bc := range benchCases {
b.Run(bc.name, func(b *testing.B) {
b.Run("WrapTrace", func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
_ = Wrap(bc.err, bc.msg)
}
})
b.Run("WrapNoTrace", func(b *testing.B) {
b.ReportAllocs()
DisableTrace()
defer enableTrace()
for i := 0; i < b.N; i++ {
_ = Wrap(bc.err, bc.msg)
}
})
b.Run("Core", func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
_ = fmt.Errorf(bc.format, bc.args...)
}
})
})
}
}
|