Home | History | Annotate | Download | only in issue_322
      1 # Check that default values with special characters are
      2 # correctly handled.
      3 
      4 Import('env')
      5 
      6 env.NanopbProto('defaults')
      7 
      8 p = env.Program(["defaults.c",
      9                  "defaults.pb.c",
     10                  "$COMMON/pb_decode.o",
     11                  "$COMMON/pb_common.o"])
     12 
     13 env.RunTest(p)
     14 
     15