diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-11-22 17:25:24 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-11-22 17:25:24 +0200 |
commit | 69e9c1fc8162956feffa32e07a97c53bdb92f5ef (patch) | |
tree | deb364082476307da9f64fcfc847cc7e50d09626 /tests/enum_to_string/SConscript | |
parent | 82dd587c7b8d10150ab6683733863e2b7e34a428 (diff) | |
parent | 928becdc52d7c8805b0e4259e0682df56e637da7 (diff) |
Merge branch 'wak-google-upstream1' (#223)
Diffstat (limited to 'tests/enum_to_string/SConscript')
-rw-r--r-- | tests/enum_to_string/SConscript | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/enum_to_string/SConscript b/tests/enum_to_string/SConscript new file mode 100644 index 00000000..e86fcca0 --- /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) + |