1# Test that fixed count option works. 2 3Import("env") 4 5env.NanopbProto("fixed_count") 6env.Object("fixed_count.pb.c") 7 8p = env.Program(["fixed_count_unittests.c", 9 "fixed_count.pb.c", 10 "$COMMON/pb_encode.o", 11 "$COMMON/pb_decode.o", 12 "$COMMON/pb_common.o"]) 13 14env.RunTest(p) 15