summaryrefslogtreecommitdiffstats
path: root/tests/backwards_compatibility/SConscript
blob: 5fb978f34ae385aef32d8ee3823e9d706ee4bc9a (plain)
1
2
3
4
5
6
7
8
9
10
11
# Check that the old generated .pb.c/.pb.h files are still compatible with the
# current version of nanopb.

Import("env")

enc = env.Program(["encode_legacy.c", "alltypes_legacy.c", "#common/pb_encode.o"])
dec = env.Program(["decode_legacy.c", "alltypes_legacy.c", "#common/pb_decode.o"])

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