1# Check that the decoder properly detects when required fields are missing. 2 3Import("env") 4 5env.NanopbProto("missing_fields") 6test = env.Program(["missing_fields.c", "missing_fields.pb.c", "$COMMON/pb_encode.o", "$COMMON/pb_decode.o"]) 7env.RunTest(test) 8 9