mirror of
https://github.com/google/pebble.git
synced 2025-03-19 10:31:21 +00:00
9 lines
278 B
Text
9 lines
278 B
Text
|
# Check that the decoder properly detects when required fields are missing.
|
||
|
|
||
|
Import("env")
|
||
|
|
||
|
env.NanopbProto("missing_fields")
|
||
|
test = env.Program(["missing_fields.c", "missing_fields.pb.c", "$COMMON/pb_encode.o", "$COMMON/pb_decode.o", "$COMMON/pb_common.o"])
|
||
|
env.RunTest(test)
|
||
|
|