You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
398 B
12 lines
398 B
# 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", "$COMMON/pb_common.o"])
|
|
dec = env.Program(["decode_legacy.c", "alltypes_legacy.c", "$COMMON/pb_decode.o", "$COMMON/pb_common.o"])
|
|
|
|
env.RunTest(enc)
|
|
env.RunTest([dec, "encode_legacy.output"])
|
|
|