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
This commit is contained in:
12
tests/basic_buffer/SConscript
Normal file
12
tests/basic_buffer/SConscript
Normal file
@@ -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"])
|
||||
|
||||
Reference in New Issue
Block a user