diff options
author | Petteri Aimonen <jpa@github.mail.kapsi.fi> | 2016-08-05 07:38:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-05 07:38:53 +0300 |
commit | 68a86e96481e6bea987df8de47027847b30c325b (patch) | |
tree | b96eaefeaeaacd123e8d7e2f033dda3ba1698681 /tests/inline/SConscript | |
parent | 0198210f2cc349e7bc5199e8db7f4afc8208d843 (diff) | |
parent | 62afd54964528c1fbd5ab802134f7e9ad912d904 (diff) |
Merge pull request #211 from tmroeder/feat-inline-bytes
Add inline allocation of bytes fields
Diffstat (limited to 'tests/inline/SConscript')
-rw-r--r-- | tests/inline/SConscript | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/inline/SConscript b/tests/inline/SConscript new file mode 100644 index 00000000..34371fda --- /dev/null +++ b/tests/inline/SConscript @@ -0,0 +1,16 @@ +# Test that inlined bytes fields work. + +Import("env") + +env.NanopbProto("inline") +env.Object("inline.pb.c") + +env.Match(["inline.pb.h", "inline.expected"]) + +p = env.Program(["inline_unittests.c", + "inline.pb.c", + "$COMMON/pb_encode.o", + "$COMMON/pb_decode.o", + "$COMMON/pb_common.o"]) + +env.RunTest(p) |