diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-11 16:13:19 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-11 16:13:19 +0300 |
commit | 61ad04afd5236e2a6a0d4b4f2caa3bab4a820c99 (patch) | |
tree | beea1aa405bb022927fc0eb5b8f4982083b68458 /tests/callbacks/SConscript | |
parent | 5b9ad17dc2014d7506a7dde92281d8c36a1433e4 (diff) | |
parent | 9f93d39f728c3e87b0ab482aa604c5cad4b1c86e (diff) |
Merge branch 'dev_tests_using_scons'
Diffstat (limited to 'tests/callbacks/SConscript')
-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"]) + |