Add 'CAN-binder/libs/nanopb/' from commit '278ffb890e3d8722e4c7d824baaf221a1e375fc4'
[apps/agl-service-can-low-level.git] / CAN-binder / libs / nanopb / tests / regression / issue_205 / SConscript
1 # Check that pb_release() correctly handles corrupted size fields of
2 # static arrays.
3
4 Import('env', 'malloc_env')
5
6 env.NanopbProto('size_corruption')
7
8 p = malloc_env.Program(["size_corruption.c",
9                          "size_corruption.pb.c",
10                          "$COMMON/pb_decode_with_malloc.o",
11                          "$COMMON/pb_common_with_malloc.o",
12                          "$COMMON/malloc_wrappers.o"])
13 env.RunTest(p)
14