summaryrefslogtreecommitdiffstats
path: root/tests/conv/conv_test.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: Fix warningsJacob Erlbeck2013-10-081-0/+2
| | | | | | This fixes warnings that are raised by missing includes, missing casts, missing return statements, using printf %lu with uint64_t, and unused symbols.
* conv: Fix main() of conv_test to compile with clang.Jacob Erlbeck2013-08-141-1/+2
| | | | | | | | | | Fix type of argument 'argv'. Addresses: conv/conv_test.c:358:5: error: second parameter of 'main' (argument array) must be of type 'char **' int main(int argc, char argv[])
* core/conv: Add regression testing codeSylvain Munaut2011-11-241-0/+486
It tests both a given test vector encoding/decoding, and some random coding/decoding cycles. Signed-off-by: Sylvain Munaut <tnt@246tNt.com>