Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-11 | Merge remote-tracking branch 'public/solaris_warnings_028' | Nick Mathewson | |
2016-07-28 | Fix 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-28 | Merge branch 'bug18902_squashed' | Nick Mathewson | |
2016-07-28 | Fix all -Wshadow warnings on Linux | Nick Mathewson | |
This is a partial fix for 18902. | |||
2016-07-04 | Raise libevent dependency to 2.0.10-stable or newer | Sebastian 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-11 | Add -Wmissing-variable-declarations, with attendant fixes | Nick 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-22 | Try to fix an intermittent test failure on openbsd. | Nick Mathewson | |
2016-02-27 | Update the copyright year. | Nick Mathewson | |
2015-05-29 | Fix another int-to-ptr cast. | Nick Mathewson | |
2015-01-02 | Bump copyright dates to 2015, in case someday this matters. | Nick Mathewson | |
2014-11-28 | Fix some 32-bit build issues in the tests | Nick Mathewson | |
When comparing 64-bit types, you need to use tt_[ui]64_op(). Found by Jenkins | |||
2014-11-27 | Fix a likely bug found by coverity in test_scheduler.c. | Nick Mathewson | |
Andrea, do you agree with this? This is CID 1256186 | |||
2014-09-30 | Update test_relay.c for recent test suite changes and --enable-mempools support | Andrea Shepard | |
2014-09-30 | Add scheduler/loop unit test | Andrea Shepard | |
2014-09-30 | Add scheduler channel states unit test | Andrea Shepard | |
2014-09-30 | Add scheduler/compare_channels unit test | Andrea Shepard | |
2014-09-30 | Add scheduler/queue_heuristic unit test | Andrea Shepard | |
2014-09-30 | Initial test_scheduler.c | Andrea Shepard | |