aboutsummaryrefslogtreecommitdiffstats
path: root/tests/basic_stream
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-09-10 22:34:54 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-09-10 22:34:54 +0300
commite2e9980627810fe0ee2b8f119bcf651f0f318a8a (patch)
tree686898756925aa02c3ef3be45bcfe8eb10fd4abb /tests/basic_stream
parent0bbcb7b367998063637ee35c5d13716492cbf6a3 (diff)
Move the rest of the tests to scons
Diffstat (limited to 'tests/basic_stream')
-rw-r--r--tests/basic_stream/SConscript12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/basic_stream/SConscript b/tests/basic_stream/SConscript
new file mode 100644
index 00000000..17382a98
--- /dev/null
+++ b/tests/basic_stream/SConscript
@@ -0,0 +1,12 @@
+# Build and run a basic round-trip test using direct stream encoding.
+
+Import("env")
+
+enc = env.Program(["encode_stream.c", "#common/person.pb.c", "#common/pb_encode.o"])
+dec = env.Program(["decode_stream.c", "#common/person.pb.c", "#common/pb_decode.o"])
+
+env.RunTest(enc)
+env.RunTest([dec, "encode_stream.output"])
+env.Decode(["encode_stream.output", "#common/person.proto"], MESSAGE = "Person")
+env.Compare(["decode_stream.output", "encode_stream.decoded"])
+