1# Regression test for Issue 227:Using proto3 type fields can cause unaligned access
2# NOTE: This test will only detect problems when run with clang sanitizer (which
3# is done regularly by a jenkins run).
4
5Import('env')
6
7env.NanopbProto('unaligned_uint64')
8
9p = env.Program(["unaligned_uint64.c",
10                 "unaligned_uint64.pb.c",
11                 "$COMMON/pb_encode.o",
12                 "$COMMON/pb_common.o"])
13env.RunTest(p)
14
15