mirror of
https://github.com/google/pebble.git
synced 2025-03-20 19:01:21 +00:00
11 lines
398 B
Python
11 lines
398 B
Python
# 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"])
|
|
|