mirror of
https://github.com/google/pebble.git
synced 2025-03-20 11:01:20 +00:00
14 lines
355 B
Text
14 lines
355 B
Text
|
# 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)
|
||
|
|