Home | History | Annotate | Download | only in options
      1 # Test that the generator options work as expected.
      2 
      3 Import("env")
      4 
      5 env.NanopbProto("options")
      6 env.Object('options.pb.c')
      7 env.Match(['options.pb.h', 'options.expected'])
      8 
      9 env.NanopbProto("proto3_options")
     10 env.Object('proto3_options.pb.c')
     11 env.Match(['proto3_options.pb.h', 'proto3_options.expected'])
     12 
     13