Home | History | Annotate | Download | only in issue_256
      1 # Regression test for Issue 256: Proto3 mode skips submessages even when
      2 # later array fields have non-zero value
      3 
      4 Import('env')
      5 
      6 env.NanopbProto('submsg_array')
      7 
      8 p = env.Program(['submsg_array.c',
      9                  'submsg_array.pb.c', 
     10                  "$COMMON/pb_decode.o",
     11                  "$COMMON/pb_encode.o",
     12                  "$COMMON/pb_common.o"])
     13 
     14 env.RunTest(p)
     15 
     16 
     17