summaryrefslogtreecommitdiff
path: root/auto_tests/Makefile.inc
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2014-04-10 20:46:24 -0400
committerirungentoo <irungentoo@gmail.com>2014-04-10 20:46:24 -0400
commit736f5f80347a39f6b82cda8a4ddc1f7d88fcc2f5 (patch)
tree320b0ae43d350693944214b8611163bf1a642aeb /auto_tests/Makefile.inc
parent05025482e327b51a161a1eab385717ef554a6637 (diff)
Added TCP test to build system.
Diffstat (limited to 'auto_tests/Makefile.inc')
-rw-r--r--auto_tests/Makefile.inc11
1 files changed, 8 insertions, 3 deletions
diff --git a/auto_tests/Makefile.inc b/auto_tests/Makefile.inc
index 27fe6f76..a8771695 100644
--- a/auto_tests/Makefile.inc
+++ b/auto_tests/Makefile.inc
@@ -1,7 +1,7 @@
1if BUILD_TESTS 1if BUILD_TESTS
2 2
3TESTS = messenger_autotest crypto_test network_test assoc_test onion_test tox_test 3TESTS = messenger_autotest crypto_test network_test assoc_test onion_test TCP_test tox_test
4check_PROGRAMS = messenger_autotest crypto_test network_test assoc_test onion_test tox_test 4check_PROGRAMS = messenger_autotest crypto_test network_test assoc_test onion_test TCP_test tox_test
5 5
6 6
7AUTOTEST_CFLAGS = \ 7AUTOTEST_CFLAGS = \
@@ -52,7 +52,6 @@ assoc_test_CFLAGS = $(AUTOTEST_CFLAGS)
52assoc_test_LDADD = $(AUTOTEST_LDADD) 52assoc_test_LDADD = $(AUTOTEST_LDADD)
53 53
54 54
55
56onion_test_SOURCES = ../auto_tests/onion_test.c 55onion_test_SOURCES = ../auto_tests/onion_test.c
57 56
58onion_test_CFLAGS = $(AUTOTEST_CFLAGS) 57onion_test_CFLAGS = $(AUTOTEST_CFLAGS)
@@ -60,6 +59,12 @@ onion_test_CFLAGS = $(AUTOTEST_CFLAGS)
60onion_test_LDADD = $(AUTOTEST_LDADD) 59onion_test_LDADD = $(AUTOTEST_LDADD)
61 60
62 61
62TCP_test_SOURCES = ../auto_tests/TCP_test.c
63
64TCP_test_CFLAGS = $(AUTOTEST_CFLAGS)
65
66TCP_test_LDADD = $(AUTOTEST_LDADD)
67
63 68
64tox_test_SOURCES = ../auto_tests/tox_test.c 69tox_test_SOURCES = ../auto_tests/tox_test.c
65 70