Home | History | Annotate | Download | only in fixed_count
      1 # Test that fixed count option works.
      2 
      3 Import("env")
      4 
      5 env.NanopbProto("fixed_count")
      6 env.Object("fixed_count.pb.c")
      7 
      8 p = 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 
     14 env.RunTest(p)
     15