summaryrefslogtreecommitdiffstats
path: root/tests/cxx_main_program/SConscript
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-09-11 16:13:19 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-09-11 16:13:19 +0300
commit61ad04afd5236e2a6a0d4b4f2caa3bab4a820c99 (patch)
treebeea1aa405bb022927fc0eb5b8f4982083b68458 /tests/cxx_main_program/SConscript
parent5b9ad17dc2014d7506a7dde92281d8c36a1433e4 (diff)
parent9f93d39f728c3e87b0ab482aa604c5cad4b1c86e (diff)
Merge branch 'dev_tests_using_scons'
Diffstat (limited to 'tests/cxx_main_program/SConscript')
-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..055c5aee
--- /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")
+env.Command("pb_encode.cxx", "#../pb_encode.c", c)
+env.Command("pb_decode.cxx", "#../pb_decode.c", c)
+env.Command("alltypes.pb.h", "#alltypes/alltypes.pb.h", c)
+env.Command("alltypes.pb.cxx", "#alltypes/alltypes.pb.c", c)
+env.Command("encode_alltypes.cxx", "#alltypes/encode_alltypes.c", c)
+env.Command("decode_alltypes.cxx", "#alltypes/decode_alltypes.c", c)
+
+# Now build and run the test normally.
+enc = env.Program(["encode_alltypes.cxx", "alltypes.pb.cxx", "pb_encode.cxx"])
+dec = env.Program(["decode_alltypes.cxx", "alltypes.pb.cxx", "pb_decode.cxx"])
+
+env.RunTest(enc)
+env.RunTest([dec, "encode_alltypes.output"])