SConscript revision 7ef855e462b9a18b7d330e4b40f350164a6ad9da
1# Build and run a basic round-trip test using memory buffer encoding.
2
3Import("env")
4
5enc = env.Program(["encode_buffer.c", "$COMMON/person.pb.c", "$COMMON/pb_encode.o"])
6dec = env.Program(["decode_buffer.c", "$COMMON/person.pb.c", "$COMMON/pb_decode.o"])
7
8env.RunTest(enc)
9env.RunTest([dec, "encode_buffer.output"])
10env.Decode(["encode_buffer.output", "$COMMON/person.proto"], MESSAGE = "Person")
11env.Compare(["decode_buffer.output", "encode_buffer.decoded"])
12
13