diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-10 22:34:54 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-10 22:34:54 +0300 |
commit | e2e9980627810fe0ee2b8f119bcf651f0f318a8a (patch) | |
tree | 686898756925aa02c3ef3be45bcfe8eb10fd4abb /tests/callbacks | |
parent | 0bbcb7b367998063637ee35c5d13716492cbf6a3 (diff) |
Move the rest of the tests to scons
Diffstat (limited to 'tests/callbacks')
-rw-r--r-- | tests/callbacks/SConscript | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/callbacks/SConscript b/tests/callbacks/SConscript new file mode 100644 index 00000000..729fd65f --- /dev/null +++ b/tests/callbacks/SConscript @@ -0,0 +1,14 @@ +# Test the functionality of the callback fields. + +Import("env") + +env.NanopbProto("callbacks") +enc = env.Program(["encode_callbacks.c", "callbacks.pb.c", "#common/pb_encode.o"]) +dec = env.Program(["decode_callbacks.c", "callbacks.pb.c", "#common/pb_decode.o"]) + +env.RunTest(enc) +env.RunTest([dec, "encode_callbacks.output"]) + +env.Decode(["encode_callbacks.output", "callbacks.proto"], MESSAGE = "TestMessage") +env.Compare(["decode_callbacks.output", "encode_callbacks.decoded"]) + |