mirror of
https://github.com/google/pebble.git
synced 2025-03-25 21:09:05 +00:00
12 lines
398 B
Text
12 lines
398 B
Text
|
# 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"])
|
||
|
|