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