aboutsummaryrefslogtreecommitdiff
path: root/tests/fixed_count/SConscript
blob: 3cecb12a253b0aadde88dff7c1fb729e7573e3a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Test that fixed count option works.

Import("env")

env.NanopbProto("fixed_count")
env.Object("fixed_count.pb.c")

p = env.Program(["fixed_count_unittests.c",
                 "fixed_count.pb.c",
                 "$COMMON/pb_encode.o",
                 "$COMMON/pb_decode.o",
                 "$COMMON/pb_common.o"])

env.RunTest(p)