diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-08 17:52:03 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-08 17:52:03 +0300 |
commit | 262c62676cf740ec3ce14a22bde47b7968fec8f0 (patch) | |
tree | 01cb3a8cc56ea58c536c9fe1d9ca3a46e96db46e /tests/basic_buffer/SConscript | |
parent | d7f3a74388b4825d2c980c53d0a740ddfd0e4770 (diff) |
Start moving the tests into subfolders. Transition to SCons for build system for the tests.
Only a few tests updated so far. Have to include all the rest before merging to mainline.
Update issue 63
Status: Started
Diffstat (limited to 'tests/basic_buffer/SConscript')
-rw-r--r-- | tests/basic_buffer/SConscript | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/basic_buffer/SConscript b/tests/basic_buffer/SConscript new file mode 100644 index 00000000..5b85e132 --- /dev/null +++ b/tests/basic_buffer/SConscript @@ -0,0 +1,12 @@ +# Build and run a basic round-trip test using memory buffer encoding. + +Import("env") + +env.Program(["encode_buffer.c", "#common/person.pb.c", "#common/pb_encode.o"]) +env.Program(["decode_buffer.c", "#common/person.pb.c", "#common/pb_decode.o"]) + +env.RunTest("encode_buffer") +env.RunTest(["decode_buffer", "encode_buffer.output"]) +env.Decode(["encode_buffer.output", "#common/person.proto"], MESSAGE = "Person") +env.Compare(["decode_buffer.output", "encode_buffer.decoded"]) + |