summaryrefslogtreecommitdiffstats
path: root/libs/nanopb/tests/callbacks/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'libs/nanopb/tests/callbacks/SConscript')
-rw-r--r--libs/nanopb/tests/callbacks/SConscript14
1 files changed, 14 insertions, 0 deletions
diff --git a/libs/nanopb/tests/callbacks/SConscript b/libs/nanopb/tests/callbacks/SConscript
new file mode 100644
index 0000000..4452143
--- /dev/null
+++ b/libs/nanopb/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", "$COMMON/pb_common.o"])
+dec = env.Program(["decode_callbacks.c", "callbacks.pb.c", "$COMMON/pb_decode.o", "$COMMON/pb_common.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"])
+