firmware/extra/nanopb/tests/regression/issue_253/SConscript
Patrick Moessler 0c83634f42 Initial commit
2019-10-13 00:37:11 +02:00

15 lines
330 B
Python

# Regression test for Issue 253: Wrong calculated message maximum size
Import('env')
env.NanopbProto('short_array')
p = env.Program(['short_array.c',
'short_array.pb.c',
"$COMMON/pb_decode.o",
"$COMMON/pb_encode.o",
"$COMMON/pb_common.o"])
env.RunTest(p)