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

SConscript « basic_stream « tests - github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17382a98091c63f8275163cf823c276a5df00590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Build and run a basic round-trip test using direct stream encoding.

Import("env")

enc = env.Program(["encode_stream.c", "#common/person.pb.c", "#common/pb_encode.o"])
dec = env.Program(["decode_stream.c", "#common/person.pb.c", "#common/pb_decode.o"])

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