summaryrefslogtreecommitdiffstats
path: root/tests/cxx_main_program
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-09-10 11:34:57 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-09-10 11:34:57 +0300
commit4dccf28ba9c212b232147fd3823554d04b30c392 (patch)
treeec96e41cdd7c589e555b5c8862a2c7165c1dcf51 /tests/cxx_main_program
parent262c62676cf740ec3ce14a22bde47b7968fec8f0 (diff)
Convert more test cases to scons
Diffstat (limited to 'tests/cxx_main_program')
-rw-r--r--tests/cxx_main_program/SConscript20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/cxx_main_program/SConscript b/tests/cxx_main_program/SConscript
new file mode 100644
index 00000000..b5482319
--- /dev/null
+++ b/tests/cxx_main_program/SConscript
@@ -0,0 +1,20 @@
+# Run the alltypes test case, but compile it as C++ instead.
+# In fact, compile the entire nanopb using C++ compiler.
+
+Import("env")
+
+# Copy the files to .cxx extension in order to force C++ build.
+c = Copy("$TARGET", "$SOURCE")
+Command("pb_encode.cxx", "#../pb_encode.c", c)
+Command("pb_decode.cxx", "#../pb_decode.c", c)
+Command("alltypes.pb.h", "#alltypes/alltypes.pb.h", c)
+Command("alltypes.pb.cxx", "#alltypes/alltypes.pb.c", c)
+Command("encode_alltypes.cxx", "#alltypes/encode_alltypes.c", c)
+Command("decode_alltypes.cxx", "#alltypes/decode_alltypes.c", c)
+
+# Now build and run the test normally.
+env.Program(["encode_alltypes.cxx", "alltypes.pb.cxx", "pb_encode.cxx"])
+env.Program(["decode_alltypes.cxx", "alltypes.pb.cxx", "pb_decode.cxx"])
+
+env.RunTest("encode_alltypes")
+env.RunTest(["decode_alltypes", "encode_alltypes.output"])