Separate field iterator logic from pb_decode to pb_common.

This commit is contained in:
Petteri Aimonen
2014-08-10 12:42:01 +03:00
parent 0150b98be6
commit a641e21b34
22 changed files with 199 additions and 138 deletions

View File

@@ -2,8 +2,8 @@
Import("env")
enc = env.Program(["encode_buffer.c", "$COMMON/person.pb.c", "$COMMON/pb_encode.o"])
dec = env.Program(["decode_buffer.c", "$COMMON/person.pb.c", "$COMMON/pb_decode.o"])
enc = env.Program(["encode_buffer.c", "$COMMON/person.pb.c", "$COMMON/pb_encode.o", "$COMMON/pb_common.o"])
dec = env.Program(["decode_buffer.c", "$COMMON/person.pb.c", "$COMMON/pb_decode.o", "$COMMON/pb_common.o"])
env.RunTest(enc)
env.RunTest([dec, "encode_buffer.output"])