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