Start moving the tests into subfolders. Transition to SCons for build system for the tests.

Only a few tests updated so far. Have to include all the rest before merging to mainline.

Update issue 63
Status: Started
This commit is contained in:
Petteri Aimonen
2013-09-08 17:52:03 +03:00
parent d7f3a74388
commit 262c62676c
43 changed files with 132 additions and 162 deletions

20
tests/common/person.proto Normal file
View File

@@ -0,0 +1,20 @@
import "nanopb.proto";
message Person {
required string name = 1 [(nanopb).max_size = 40];
required int32 id = 2;
optional string email = 3 [(nanopb).max_size = 40];
enum PhoneType {
MOBILE = 0;
HOME = 1;
WORK = 2;
}
message PhoneNumber {
required string number = 1 [(nanopb).max_size = 40];
optional PhoneType type = 2 [default = HOME];
}
repeated PhoneNumber phone = 4 [(nanopb).max_count = 5];
}