Add 'CAN-binder/libs/nanopb/' from commit '278ffb890e3d8722e4c7d824baaf221a1e375fc4'
[apps/agl-service-can-low-level.git] / CAN-binder / libs / nanopb / tests / regression / issue_166 / SConscript
1 # Verify that the maximum encoded size is calculated properly
2 # for enums.
3
4 Import('env')
5
6 env.NanopbProto('enums')
7
8 p = env.Program(["enum_encoded_size.c",
9                  "enums.pb.c",
10                  "$COMMON/pb_encode.o",
11                  "$COMMON/pb_common.o"])
12 env.RunTest(p)
13