From 928becdc52d7c8805b0e4259e0682df56e637da7 Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Tue, 22 Nov 2016 17:25:00 +0200 Subject: Test case for enum_to_string --- tests/enum_to_string/SConscript | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/enum_to_string/SConscript (limited to 'tests/enum_to_string/SConscript') diff --git a/tests/enum_to_string/SConscript b/tests/enum_to_string/SConscript new file mode 100644 index 0000000..e86fcca --- /dev/null +++ b/tests/enum_to_string/SConscript @@ -0,0 +1,7 @@ +# Test enum to string functionality + +Import('env') +env.NanopbProto("enum.proto") +p = env.Program(["enum_to_string.c", "enum.pb.c"]) +env.RunTest(p) + -- cgit