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