Home | History | Annotate | Download | only in intsizes
      1 # Test that the int_size option in .proto works.
      2 
      3 Import('env')
      4 
      5 env.NanopbProto('intsizes')
      6 
      7 p = env.Program(["intsizes_unittests.c",
      8                  "intsizes.pb.c",
      9                  "$COMMON/pb_encode.o",
     10                  "$COMMON/pb_decode.o",
     11                  "$COMMON/pb_common.o"])
     12 env.RunTest(p)
     13