1# Test namingstyle option
2
3Import('env')
4
5env = env.Clone()
6env.Replace(NANOPBFLAGS = "-C")
7
8env.NanopbProto(["naming_style", "naming_style.options"])
9
10test = env.Program(["test_naming_style_c.c", "naming_style.pb.c", "$COMMON/pb_decode.o", "$COMMON/pb_encode.o", '$COMMON/pb_common.o'])
11env.RunTest(test)
12