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

13 lines
285 B
Python

# Verify that the maximum encoded size is calculated properly
# for enums.
Import('env')
env.NanopbProto('enums')
p = env.Program(["enum_encoded_size.c",
"enums.pb.c",
"$COMMON/pb_encode.o",
"$COMMON/pb_common.o"])
env.RunTest(p)