summaryrefslogtreecommitdiffstats
path: root/tests/encode_unittests
AgeCommit message (Collapse)AuthorFilesLines
2014-09-07Add a few missing unit testsPetteri Aimonen1-0/+17
2014-08-18Change the _count fields to use pb_size_t datatype.Petteri Aimonen1-1/+1
Update issue 82 Status: FixedInGit
2014-08-10Separate field iterator logic from pb_decode to pb_common.Petteri Aimonen1-0/+1
2014-04-05Add a convenience function pb_get_encoded_size()Petteri Aimonen1-0/+9
There is minimal size penalty from this, and it is probably much more intuitive to use than PB_OSTREAM_SIZING itself. This has been suggested before also, but I ended up refusing it back them. Reconsidering it now, I see that an intuitive API is much better than any amount of documentation explaining a non-intuitive API. Update issue 16 Status: FixedInGit
2013-11-13Make tests build in a separate folder, add to gitignorePetteri Aimonen1-1/+1
2013-10-29Remove the NANOPB_INTERNALS functions from public API.Petteri Aimonen2-3/+3
These have been deprecated since nanopb-0.1.6 (some since 0.1.3). Equivalent functions with better interface are available in the API. Update issue 91 Status: FixedInGit
2013-10-24Detect invalid sizes when encoding bytes fields.Petteri Aimonen1-2/+16
2013-10-20Check array max size when encoding.Petteri Aimonen1-0/+14
Update issue 90 Status: FixedInGit
2013-09-26Add #defines for the maximum encoded message size.Petteri Aimonen1-0/+13
Update issue 89 Status: FixedInGit
2013-09-10Build fixes for Windows/Visual C++Petteri Aimonen1-2/+2
2013-09-08Start moving the tests into subfolders. Transition to SCons for build system ↵Petteri Aimonen2-0/+292
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