summaryrefslogtreecommitdiff
path: root/src/test/test_channeltls.c
AgeCommit message (Collapse)Author
2016-06-11Use -Wdouble-promotion in GCC >= 4.6Nick Mathewson
This warning triggers on silently promoting a float to a double. In our code, it's just a sign that somebody used a float by mistake, since we always prefer double.
2016-06-11Add -Wfloat-conversion for GCC >= 4.9Nick Mathewson
This caught quite a few minor issues in our unit tests and elsewhere in our code.
2016-02-27Update the copyright year.Nick Mathewson
2015-12-15Replace usage of INLINE with inlinecypherpunks
This patch was generated using; sed -i -e "s/\bINLINE\b/inline/" src/*/*.[ch] src/*/*/*.[ch]
2015-01-02Bump copyright dates to 2015, in case someday this matters.Nick Mathewson
2014-12-22Fix a bunch of memory leaks in the unit tests. Found with valgrindNick Mathewson
2014-09-30Update test_channeltls.c for recent test suite changes and --enable-mempools ↵Andrea Shepard
support
2014-09-30Add channel_tls_num_cells_writeable_method() coverage to ↵Andrea Shepard
channeltls/num_bytes_queued unit test
2014-09-30Add channeltls/num_bytes_queued unit testAndrea Shepard
2014-09-30Implement tlschan create and overhead estimate unit testsAndrea Shepard
2014-09-30Initial test_channeltls.cAndrea Shepard