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

SConscript « alltypes « tests - github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1dc6f8711a9fe22a0f26026e5540355c1e08c9ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Build and run a test that encodes and decodes a message that contains
# all of the Protocol Buffers data types.

Import("env")

env.NanopbProto(["alltypes", "alltypes.options"])
enc = env.Program(["encode_alltypes.c", "alltypes.pb.c", "$COMMON/pb_encode.o"])
dec = env.Program(["decode_alltypes.c", "alltypes.pb.c", "$COMMON/pb_decode.o"])

env.RunTest(enc)
env.RunTest([dec, "encode_alltypes.output"])