summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2018-12-17 18:18:41 -0800
committerJosh Haberman <jhaberman@gmail.com>2018-12-17 18:18:41 -0800
commitb996854899f67895859fdf8e49f868ba7bc1b2f9 (patch)
tree07edd4f5b946f1320edb5876719a57db6f4ea7a5 /tests
parent9f5dec1c0569c2dbc39ecdde62e9f194d28bfeb0 (diff)
Added missing test_cpp.proto.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_cpp.proto12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_cpp.proto b/tests/test_cpp.proto
new file mode 100644
index 0000000..f890350
--- /dev/null
+++ b/tests/test_cpp.proto
@@ -0,0 +1,12 @@
+syntax = "proto2";
+
+package upb.test;
+
+message TestMessage {
+ optional int32 i32 = 1;
+ repeated int32 r_i32 = 2;
+ optional string str = 3;
+ repeated string r_str = 4;
+ optional TestMessage msg = 5;
+ repeated TestMessage r_msg = 6;
+}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback