diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-09-22 13:29:55 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-09-23 00:24:43 -0400 |
commit | d9d0813809e8fac42d2e7604342e606273d91dc1 (patch) | |
tree | 941d8745499438296c2664a100b0669e06f50dcf /src/test/Makefile.am | |
parent | d2857d524c053d2fe2c5300c9828c40be970df6d (diff) | |
download | tor-d9d0813809e8fac42d2e7604342e606273d91dc1.tar.gz tor-d9d0813809e8fac42d2e7604342e606273d91dc1.zip |
Split general util and address tests into their own files.
Diffstat (limited to 'src/test/Makefile.am')
-rw-r--r-- | src/test/Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/test/Makefile.am b/src/test/Makefile.am index e31ab70aee..d907f55b55 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -12,7 +12,14 @@ AM_CFLAGS = -I../or # This seems to matter nowhere but on windows, but I assure you that it # matters a lot there, and is quite hard to debug if you forget to do it. -test_SOURCES = test_data.c test.c test_crypto.c test_containers.c tinytest.c +test_SOURCES = \ + test_data.c \ + test.c \ + test_addr.c \ + test_crypto.c \ + test_containers.c \ + test_util.c \ + tinytest.c test_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \ @TOR_LDFLAGS_libevent@ |