aboutsummaryrefslogtreecommitdiffstats
path: root/tests/basic_buffer/SConscript
blob: 349fb14f58c6373aa8db5ffdbba5c5b51c2b7a80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Build and run a basic round-trip test using memory buffer encoding.

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"])

env.RunTest(enc)
env.RunTest([dec, "encode_buffer.output"])
env.Decode(["encode_buffer.output", "#common/person.proto"], MESSAGE = "Person")
env.Compare(["decode_buffer.output", "encode_buffer.decoded"])