Clarify security model with regard to pointer _count fields.
[apps/agl-service-can-low-level.git] / tests / multiple_files / SConscript
1 # Test that multiple .proto files don't cause name collisions.
2
3 Import("env")
4
5 incpath = env.Clone()
6 incpath.Append(PROTOCPATH = '#multiple_files')
7
8 incpath.NanopbProto(["multifile1", "multifile1.options"])
9 incpath.NanopbProto("multifile2")
10 test = incpath.Program(["test_multiple_files.c", "multifile1.pb.c", "multifile2.pb.c"])
11
12 env.RunTest(test)
13