Fix bugs in proto3 mode encoding of submessages (#256)
[apps/agl-service-can-low-level.git] / tests / regression / issue_249 / SConscript
1 # Regression test for Issue 249: proto3 mode pb_decode() corrupts callback fields
2 Import('env')
3
4 env.NanopbProto('test')
5
6 p = env.Program(["test.c",
7                  "test.pb.c",
8                  "$COMMON/pb_decode.o",
9                  "$COMMON/pb_encode.o",
10                  "$COMMON/pb_common.o"])
11 env.RunTest(p)
12