Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-02-26Fix for default value byte escapingHamina, Juha-Pekka
2017-12-11Extend alltypes test case to cover issue #295.Petteri Aimonen
2017-02-22Add fixed length bytes to alltypes test case (issue #244)Petteri Aimonen
2015-09-20Add syntax specification to .proto files (issue #167)Petteri Aimonen
Eliminates a warning on protoc 3.0.
2015-01-11Add oneofs to AllTypes test casePetteri Aimonen
2014-08-10Separate field iterator logic from pb_decode to pb_common.Petteri Aimonen
2014-08-04Generate #defines for initializing message structures.Petteri Aimonen
Usage like: MyMessage foo = MyMessage_init_default; MyMessage_init_default will initialize to default values defined in .proto. MyMessage_init_zero will initialize to null/zero values. Same results as {} or {0}, but will avoid compiler warnings by initializing everything explicitly. Update issue 79 Status: FixedInGit
2014-05-17Fix bug in alltypes test case that made fuzzing difficult.Petteri Aimonen
2014-02-05Extreme negative integer constants are a bit nasty to define in C, just ↵Petteri Aimonen
avoid the trouble in tests for now.
2014-02-04Add proper suffixes for integer default values.Petteri Aimonen
Update issue 102 Status: FixedInGit
2013-12-21Add test for extreme integer values (INT32_MAX etc.) in AllTypes.Petteri Aimonen
2013-12-21Modify the alltypes test to check re-encoding through protoc.Petteri Aimonen
This way we can verify that the message is encoded exactly the same way as the official protobuf implementation would do it.
2013-11-14Make tests build in a separate folder, add to gitignorePetteri Aimonen
2013-09-26Add #defines for the maximum encoded message size.Petteri Aimonen
Update issue 89 Status: FixedInGit
2013-09-11Windows build fixesPetteri Aimonen
2013-09-10Build fixes for Windows/Visual C++Petteri Aimonen
2013-09-10Convert more test cases to sconsPetteri Aimonen
2013-09-08Start moving the tests into subfolders. Transition to SCons for build system ↵Petteri Aimonen
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