aboutsummaryrefslogtreecommitdiff
path: root/tests/inline/inline.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/inline/inline.proto')
-rw-r--r--tests/inline/inline.proto17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/inline/inline.proto b/tests/inline/inline.proto
deleted file mode 100644
index 6e511f0..0000000
--- a/tests/inline/inline.proto
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Test nanopb option parsing.
- * options.expected lists the patterns that are searched for in the output.
- */
-
-syntax = "proto2";
-
-import "nanopb.proto";
-
-message Message1
-{
- required bytes data = 1 [(nanopb).type = FT_INLINE, (nanopb).max_size = 32];
-}
-
-message Message2
-{
- optional bytes data = 1 [(nanopb).type = FT_INLINE, (nanopb).max_size = 64];
-}