summaryrefslogtreecommitdiffstats
path: root/tests/options.proto
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2012-11-14 00:20:44 +0200
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2012-11-14 00:36:16 +0200
commit02ecee2de89f3225a6cd4bf87b0e4285bb1d06eb (patch)
tree47bef1d3142a2035500cb2ea74aab5218a1885f9 /tests/options.proto
parent332a9ee95c38db4537d0a33e58fef617d3e1d589 (diff)
Fix naming of enums when long_names=false.
Modify test case to check that options.pb.o compiles. Update issue 42 Status: FixedInGit Update issue 43 Status: FixedInGit
Diffstat (limited to 'tests/options.proto')
-rw-r--r--tests/options.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/options.proto b/tests/options.proto
index e296bcd1..7eb2eb30 100644
--- a/tests/options.proto
+++ b/tests/options.proto
@@ -36,4 +36,10 @@ enum Enum1
{
option (nanopb_enumopt).long_names = false;
EnumValue1 = 1;
+ EnumValue2 = 2;
+}
+
+message EnumTest
+{
+ required Enum1 field = 1 [default = EnumValue2];
}