diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-07-17 17:31:27 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-08-15 12:03:36 -0400 |
commit | 7a12cbc03d8fda94c9387a1976ad2ffc30b4b5b7 (patch) | |
tree | 6152e1cb78a1e52f976348cc725829a7ca28bd26 /src/test/include.am | |
parent | 9d8ffa91ceb3dd57b9ff1170ebe200db25403391 (diff) | |
download | tor-7a12cbc03d8fda94c9387a1976ad2ffc30b4b5b7.tar.gz tor-7a12cbc03d8fda94c9387a1976ad2ffc30b4b5b7.zip |
Split out buffers and socks tests into separate modules.
No other changes were made here. Keeping everything in
src/test/test.c was a legacy of back when we had all our unit tests in
one big file.
Doing this now because I'm adding an ext_or_command test.
Diffstat (limited to 'src/test/include.am')
-rw-r--r-- | src/test/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/include.am b/src/test/include.am index 62719091b8..8718ce7c91 100644 --- a/src/test/include.am +++ b/src/test/include.am @@ -18,6 +18,7 @@ src_test_AM_CPPFLAGS = -DSHARE_DATADIR="\"$(datadir)\"" \ src_test_test_SOURCES = \ src/test/test.c \ src/test/test_addr.c \ + src/test/test_buffers.c \ src/test/test_cell_formats.c \ src/test/test_circuitlist.c \ src/test/test_containers.c \ @@ -30,6 +31,7 @@ src_test_test_SOURCES = \ src/test/test_options.c \ src/test/test_pt.c \ src/test/test_replay.c \ + src/test/test_socks.c \ src/test/test_util.c \ src/test/test_config.c \ src/ext/tinytest.c |