aboutsummaryrefslogtreecommitdiff
path: root/src/test/Makefile.am
Commit message (Collapse)AuthorAge
* Move to non-recursive makeStewart Smith2012-08-09
| | | | | | | | | | | | | | | | | | | | This gives us a few benefits: 1) make -j clean all this will start working, as it should. It currently doesn't. 2) increased parallel build recursive make will max out at number of files in a directory, non-recursive make doesn't have such a limitation 3) Removal of duplicate information in make files, less error prone I've also slightly updated how we call AM_INIT_AUTOMAKE, as the way that was used was not only deprecated but will be *removed* in the next major automake release (1.13).... so probably best that we can continue to bulid tor without requiring old automake. (see http://www.gnu.org/software/automake/manual/html_node/Public-Macros.html ) For more reasons why, see resources such as: http://miller.emu.id.au/pmiller/books/rmch/
* Unit tests for new rend_intro_cell_t parserAndrea Shepard2012-07-31
|
* Implement replaycache_t for bug 6177, and unit tests for the precedingAndrea Shepard2012-07-31
|
* Tweak the haiku-support patchesNick Mathewson2011-12-19
|
* -lm should not be hardcoded.Martin Hebnes Pedersen2011-12-19
| | | | | | On some platforms (Haiku/BeOS) libm lives in libcore. Also added 'network' to the list of libraries to search for connect().
* Merge branch 'bug933_nm_rebased_v2'Nick Mathewson2011-11-30
|\ | | | | | | | | Conflicts: src/test/test.c
| * bug933 - Match against super-domains in MapAddressRobert Hogan2011-11-30
| | | | | | | | | | | | | | | | | | Allow MapAddress to handle directives such as: MapAddress .torproject.org .torserver.exit MapAddress .org 1.1.1.1 Add tests for addressmap_rewrite.
* | New src/test/bench.c to allow us to actually _run_ benchmark codeNick Mathewson2011-11-11
| | | | | | | | Yes, the timing functions are suboptimal. Please improve!
* | Merge remote-tracking branch 'asn2/bug3656'Nick Mathewson2011-10-07
|\ \ | |/ |/| | | | | | | | | | | | | Conflicts: src/common/util.c src/common/util.h src/or/config.h src/or/main.c src/test/test_util.c
| * Add some unit tests.George Kadianakis2011-07-13
| |
* | Merge remote-tracking branch 'origin/maint-0.2.2'Nick Mathewson2011-06-22
|\ \ | |/ |/|
| * Fix minor comment issuesRobert Ransom2011-06-22
| |
* | Link to libevent_openssl statically when requestedSebastian Hahn2011-05-06
| | | | | | | | | | | | When configure tor with --enable-bufferevents and --enable-static-libevent, libevent_openssl would still be linked dynamically. Fix this and refactor src/or/Makefile.am along the way.
* | Split long lines in configure.in and Makefile.am filesNick Mathewson2010-11-11
| | | | | | | | | | | | | | | | | | | | Having very long single lines with lots and lots of things in them tends to make files hard to diff and hard to merge. Since our tools are one-line-at-a-time, we should try to construct lists that way too, within reason. This incidentally turned up a few headers in configure.in that we were for some reason searching for twice.
* | Merge remote branch 'sjmurdoch/bug1903'Nick Mathewson2010-10-11
|\ \
| * | Add a unit test for tor_spawn_backgroundSteven Murdoch2010-10-10
| | | | | | | | | | | | | | | - Test sucessfully starting a process - Test failing to find the executable
* | | Unit tests for microdescriptor cacheNick Mathewson2010-10-07
|/ / | | | | | | May help with tracking down bug #2022
* | Fix build with automake 1.6Nick Mathewson2010-09-27
| | | | | | | | | | | | automake 1.6 doesn't like using a conditional += to add stuff to foo_LDADD. Instead you need to conditionally define a variable, then non-conditionally put that variable in foo_LDADD.
* | Get SSL connections and linked connections working with bufferevents.Nick Mathewson2010-09-27
|/ | | | | Clients are now verified to work and build circuits correctly. There are still a few warnings given here and there that I need to look into.
* Add --enable-static-zlib optionSebastian Hahn2010-04-14
| | | | | | | Works like the --enable-static-openssl/libevent options. Requires --with-zlib-dir to be set. Note that other dependencies might still pull in a dynamicly linked zlib, if you don't link them in statically too.
* Merge commit 'origin/maint-0.2.1'Nick Mathewson2010-01-24
| | | | | | | Resolved conflicts in: configure.in src/or/Makefile.am src/tools/Makefile.am
* Fix building from a separate build directory.Nick Mathewson2009-11-08
|
* Ship test.h in releasePeter Palfrader2009-10-11
| | | | | | The test suite need the test.h file to build. Add it to noinst_HEADERS in the Makefile.am so it gets included in the tarball that make dist produces.
* Do not distribute tinytest_demo.c in the tarballNick Mathewson2009-09-23
|
* Split directory tests into their own module.Nick Mathewson2009-09-23
| | | | (Also, clean up some whitespace.)
* Split general util and address tests into their own files.Nick Mathewson2009-09-23
|
* Split container tests into their own moduleNick Mathewson2009-09-23
|
* Split crypto tests into a separate module.Nick Mathewson2009-09-23
|
* Remove a warning on ./autogen.shSebastian Hahn2009-09-23
|
* Move testing code into new src/test directory.Nick Mathewson2009-09-23