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