Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « basic_buffer « tests - github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b85e132904c57bd6c3aa4941a4423e26407b0fc (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")

env.Program(["encode_buffer.c", "#common/person.pb.c", "#common/pb_encode.o"])
env.Program(["decode_buffer.c", "#common/person.pb.c", "#common/pb_decode.o"])

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