mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-17 01:12:51 +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 {
|
} else {
|
||||||
_, err = opts.Marshal(want)
|
_, err = opts.Marshal(want)
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil && !test.partial {
|
||||||
b.Fatal(err)
|
b.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -55,16 +55,16 @@ func BenchmarkDecode(b *testing.B) {
|
|||||||
opts := proto.UnmarshalOptions{AllowPartial: *allowPartial}
|
opts := proto.UnmarshalOptions{AllowPartial: *allowPartial}
|
||||||
b.Run(fmt.Sprintf("%s (%T)", test.desc, want), func(b *testing.B) {
|
b.Run(fmt.Sprintf("%s (%T)", test.desc, want), func(b *testing.B) {
|
||||||
b.RunParallel(func(pb *testing.PB) {
|
b.RunParallel(func(pb *testing.PB) {
|
||||||
|
for pb.Next() {
|
||||||
m := reflect.New(reflect.TypeOf(want).Elem()).Interface().(proto.Message)
|
m := reflect.New(reflect.TypeOf(want).Elem()).Interface().(proto.Message)
|
||||||
v1 := m.(protoV1.Message)
|
v1 := m.(protoV1.Message)
|
||||||
for pb.Next() {
|
|
||||||
var err error
|
var err error
|
||||||
if *benchV1 {
|
if *benchV1 {
|
||||||
err = protoV1.Unmarshal(test.wire, v1)
|
err = protoV1.Unmarshal(test.wire, v1)
|
||||||
} else {
|
} else {
|
||||||
err = opts.Unmarshal(test.wire, m)
|
err = opts.Unmarshal(test.wire, m)
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil && !test.partial {
|
||||||
b.Fatal(err)
|
b.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user