SConscript 383 B

1234567891011121314
  1. # Regression test for #376:
  2. # Problem with fixed array inside proto3 submessage
  3. Import("env")
  4. env.NanopbProto(["fixed_array.proto", "fixed_array.options"])
  5. testprog = env.Program(["test_fixarray.c",
  6. "fixed_array.pb.c",
  7. "$COMMON/pb_encode.o",
  8. "$COMMON/pb_decode.o",
  9. "$COMMON/pb_common.o"])
  10. env.RunTest(testprog)