mirror of
https://github.com/google/pebble.git
synced 2025-03-19 18:41:21 +00:00
13 lines
355 B
Python
13 lines
355 B
Python
# Regression test for Issue 229: problem encoding message that has
|
|
# multiple oneof fields
|
|
Import('env')
|
|
|
|
env.NanopbProto('multiple_oneof')
|
|
|
|
p = env.Program(["multiple_oneof.c",
|
|
"multiple_oneof.pb.c",
|
|
"$COMMON/pb_decode.o",
|
|
"$COMMON/pb_encode.o",
|
|
"$COMMON/pb_common.o"])
|
|
env.RunTest(p)
|
|
|