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
2017-02-22Add fixed length bytes to alltypes test case (issue #244)Petteri Aimonen
2015-01-11Add oneofs to AllTypes test casePetteri 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
2013-12-21Add test for extreme integer values (INT32_MAX etc.) in AllTypes.Petteri Aimonen
2013-09-11Windows build fixesPetteri 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