mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2024-12-28 18:25:46 +00:00
proto: bench_test fixes
Don't fail on test cases with partial messages. Create a new message on each decode cycle. Change-Id: I7c1d91a2853e340fc0bae05a238bb28eb682e6ce Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/185377 Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
This commit is contained in:
parent
5455ef5ca4
commit
dd380ab64d
@ -38,7 +38,7 @@ func BenchmarkEncode(b *testing.B) {
|
||||
} else {
|
||||
_, err = opts.Marshal(want)
|
||||
}
|
||||
if err != nil {
|
||||
if err != nil && !test.partial {
|
||||
b.Fatal(err)
|
||||
}
|
||||
}
|
||||
@ -55,16 +55,16 @@ func BenchmarkDecode(b *testing.B) {
|
||||
opts := proto.UnmarshalOptions{AllowPartial: *allowPartial}
|
||||
b.Run(fmt.Sprintf("%s (%T)", test.desc, want), func(b *testing.B) {
|
||||
b.RunParallel(func(pb *testing.PB) {
|
||||
m := reflect.New(reflect.TypeOf(want).Elem()).Interface().(proto.Message)
|
||||
v1 := m.(protoV1.Message)
|
||||
for pb.Next() {
|
||||
m := reflect.New(reflect.TypeOf(want).Elem()).Interface().(proto.Message)
|
||||
v1 := m.(protoV1.Message)
|
||||
var err error
|
||||
if *benchV1 {
|
||||
err = protoV1.Unmarshal(test.wire, v1)
|
||||
} else {
|
||||
err = opts.Unmarshal(test.wire, m)
|
||||
}
|
||||
if err != nil {
|
||||
if err != nil && !test.partial {
|
||||
b.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user