aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_channel.c
AgeCommit message (Collapse)Author
2016-03-21Add new channel/queue_incoming unit tests; modify channel unit tests for new ↵Andrea Shepard
clarified handling of alloc/free responsibility for queued incoming cells
2016-02-27Update the copyright year.Nick Mathewson
2015-05-26Fix unit tests on MSVC2013.Nick Mathewson
Patch from "NewEraCracker." Fixes bug16030; bugfix on 0.2.6.2-alpha.
2015-02-23Remove lingering mempool codecypherpunks
2015-01-02Bump copyright dates to 2015, in case someday this matters.Nick Mathewson
2014-12-26Add another cellintptr use; fixes 14031Nick Mathewson
2014-12-22Tweak channel unit tests so we don't see coverity complaintsNick Mathewson
channel_write_*_cell() can delete its argument, so coverity doesn't like us doing pointer comparison against that argument later. Silly.
2014-12-22Fix a bunch of memory leaks in the unit tests. Found with valgrindNick Mathewson
2014-12-22Fix some coverity issues in the unit testsNick Mathewson
2014-12-04Fix more 64/32 warnings in test_channel.cNick Mathewson
2014-11-28Fix some 32-bit build issues in the testsNick Mathewson
When comparing 64-bit types, you need to use tt_[ui]64_op(). Found by Jenkins
2014-09-30Update test_channel.c for recent test suite changes and --enable-mempools ↵Andrea Shepard
support
2014-09-30Limited unit test for channel_dump_statistics()Andrea Shepard
2014-09-30Add channel/dumpstats unit testAndrea Shepard
2014-09-30Check queueing case in channel/flushmux unit test tooAndrea Shepard
2014-09-30Add channel/flushmux unit testAndrea Shepard
2014-09-30Add channel/incoming unit testAndrea Shepard
2014-09-30Add unknown cell queue entry type case to channel/queue_impossible unit testAndrea Shepard
2014-09-30Small channel unit test improvementsAndrea Shepard
2014-09-30Unit test for unusual channel lifecyclesAndrea Shepard
2014-09-30Check some can't-happen cases draining channel cell queuesAndrea Shepard
2014-09-30Add scheduler_channel_has_waiting_cells_mock() and some mock counter queriesAndrea Shepard
2014-09-30Expose a useful mock from test_channel.cAndrea Shepard
2014-09-30Expose fake channel utility functions in test suite in fakechans.h, and fix ↵Andrea Shepard
a test_channel.c bug
2014-09-30Implement channel flush unit testAndrea Shepard
2014-09-30Add channel lifecycle testAndrea Shepard
2014-09-30Implement two-channel queue estimate testAndrea Shepard
2014-09-30Implement channel queue size estimate unit testAndrea Shepard
2014-09-30Unit tests for channel_get_cell_queue_entry_size() and channel_write_*() ↵Andrea Shepard
functions