SConscript 278 B

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