SConscript 335 B

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