summaryrefslogtreecommitdiff
path: root/auto_tests/Makefile.inc
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-12-31 23:18:37 -0500
committerirungentoo <irungentoo@gmail.com>2013-12-31 23:18:37 -0500
commit97b9a9cf04570fde8646d0606fab93344a72153a (patch)
treeb8f4c69c8e7cb09ccb901cad48c56ab2a3c476e7 /auto_tests/Makefile.inc
parent5341801bf17f9e9ce307a2c4efebf466a42a936d (diff)
Added onion.c to build system and added a test.
Diffstat (limited to 'auto_tests/Makefile.inc')
-rw-r--r--auto_tests/Makefile.inc14
1 files changed, 12 insertions, 2 deletions
diff --git a/auto_tests/Makefile.inc b/auto_tests/Makefile.inc
index 38eda6c7..5e067336 100644
--- a/auto_tests/Makefile.inc
+++ b/auto_tests/Makefile.inc
@@ -1,8 +1,8 @@
1if BUILD_TESTS 1if BUILD_TESTS
2 2
3TESTS = messenger_autotest crypto_test network_test assoc_test tox_test 3TESTS = messenger_autotest crypto_test network_test assoc_test onion_test tox_test
4 4
5check_PROGRAMS = messenger_autotest crypto_test network_test assoc_test tox_test 5check_PROGRAMS = messenger_autotest crypto_test network_test assoc_test onion_test tox_test
6 6
7AUTOTEST_CFLAGS = \ 7AUTOTEST_CFLAGS = \
8 $(LIBSODIUM_CFLAGS) \ 8 $(LIBSODIUM_CFLAGS) \
@@ -44,6 +44,16 @@ assoc_test_CFLAGS = $(AUTOTEST_CFLAGS)
44 44
45assoc_test_LDADD = $(AUTOTEST_LDADD) 45assoc_test_LDADD = $(AUTOTEST_LDADD)
46 46
47
48
49onion_test_SOURCES = ../auto_tests/onion_test.c
50
51onion_test_CFLAGS = $(AUTOTEST_CFLAGS)
52
53onion_test_LDADD = $(AUTOTEST_LDADD)
54
55
56
47tox_test_SOURCES = ../auto_tests/tox_test.c 57tox_test_SOURCES = ../auto_tests/tox_test.c
48 58
49tox_test_CFLAGS = $(AUTOTEST_CFLAGS) 59tox_test_CFLAGS = $(AUTOTEST_CFLAGS)