aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_scheduler.c
AgeCommit message (Collapse)Author
2016-09-11Merge remote-tracking branch 'public/solaris_warnings_028'Nick Mathewson
2016-07-28Fix a large pile of solaris warnings for bug 19767.Nick Mathewson
In nearly all cases, this is a matter of making sure that we include orconfig.h before we include any standard c headers.
2016-07-28Merge branch 'bug18902_squashed'Nick Mathewson
2016-07-28Fix all -Wshadow warnings on LinuxNick Mathewson
This is a partial fix for 18902.
2016-07-04Raise libevent dependency to 2.0.10-stable or newerSebastian Hahn
Only some very ancient distributions don't ship with Libevent 2 anymore, even the oldest supported Ubuntu LTS version has it. This allows us to get rid of a lot of compat code.
2016-06-11Add -Wmissing-variable-declarations, with attendant fixesNick Mathewson
This is a big-ish patch, but it's very straightforward. Under this clang warning, we're not actually allowed to have a global variable without a previous extern declaration for it. The cases where we violated this rule fall into three roughly equal groups: * Stuff that should have been static. * Stuff that was global but where the extern was local to some other C file. * Stuff that was only global when built for the unit tests, that needed a conditional extern in the headers. The first two were IMO genuine problems; the last is a wart of how we build tests.
2016-03-22Try to fix an intermittent test failure on openbsd.Nick Mathewson
2016-02-27Update the copyright year.Nick Mathewson
2015-05-29Fix another int-to-ptr cast.Nick Mathewson
2015-01-02Bump copyright dates to 2015, in case someday this matters.Nick 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-11-27Fix a likely bug found by coverity in test_scheduler.c.Nick Mathewson
Andrea, do you agree with this? This is CID 1256186
2014-09-30Update test_relay.c for recent test suite changes and --enable-mempools supportAndrea Shepard
2014-09-30Add scheduler/loop unit testAndrea Shepard
2014-09-30Add scheduler channel states unit testAndrea Shepard
2014-09-30Add scheduler/compare_channels unit testAndrea Shepard
2014-09-30Add scheduler/queue_heuristic unit testAndrea Shepard
2014-09-30Initial test_scheduler.cAndrea Shepard