aboutsummaryrefslogtreecommitdiff
path: root/src/mesh
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2012-08-09 12:36:42 +0000
committerBart Polot <bart@net.in.tum.de>2012-08-09 12:36:42 +0000
commitaab6a89eafc3e1016008adb2e18eaa821f27c078 (patch)
tree765248958e6cb3493594a5cc3cd7542bbe046c3e /src/mesh
parent8fe55f6ef6da4a76438312eb28f9ec196e0d85b8 (diff)
downloadgnunet-aab6a89eafc3e1016008adb2e18eaa821f27c078.tar.gz
gnunet-aab6a89eafc3e1016008adb2e18eaa821f27c078.zip
- prepare for different local tests
Diffstat (limited to 'src/mesh')
-rw-r--r--src/mesh/Makefile.am31
1 files changed, 27 insertions, 4 deletions
diff --git a/src/mesh/Makefile.am b/src/mesh/Makefile.am
index ad87cd5f9..68ae729c9 100644
--- a/src/mesh/Makefile.am
+++ b/src/mesh/Makefile.am
@@ -86,7 +86,9 @@ check_PROGRAMS = \
86 test_mesh_tree_api \ 86 test_mesh_tree_api \
87 test_mesh_local_1 \ 87 test_mesh_local_1 \
88 test_mesh_local_2 \ 88 test_mesh_local_2 \
89 test_mesh_local_traffic \ 89 test_mesh_local_traffic_fwd \
90 test_mesh_local_traffic_bck \
91 test_mesh_local_traffic_both \
90 test_mesh_2dtorus \ 92 test_mesh_2dtorus \
91 test_mesh_regex \ 93 test_mesh_regex \
92 test_mesh_small_unicast \ 94 test_mesh_small_unicast \
@@ -131,13 +133,31 @@ test_mesh_local_2_LDADD = \
131test_mesh_local_2_DEPENDENCIES = \ 133test_mesh_local_2_DEPENDENCIES = \
132 libgnunetmesh.la 134 libgnunetmesh.la
133 135
134test_mesh_local_traffic_SOURCES = \ 136test_mesh_local_traffic_fwd_SOURCES = \
135 test_mesh_local_traffic.c 137 test_mesh_local_traffic.c
136test_mesh_local_traffic_LDADD = \ 138test_mesh_local_traffic_fwd_LDADD = \
137 $(top_builddir)/src/util/libgnunetutil.la \ 139 $(top_builddir)/src/util/libgnunetutil.la \
138 $(top_builddir)/src/testing/libgnunettesting.la \ 140 $(top_builddir)/src/testing/libgnunettesting.la \
139 $(top_builddir)/src/mesh/libgnunetmesh.la 141 $(top_builddir)/src/mesh/libgnunetmesh.la
140test_mesh_local_traffic_DEPENDENCIES = \ 142test_mesh_local_traffic_fwd_DEPENDENCIES = \
143 libgnunetmesh.la
144
145test_mesh_local_traffic_bck_SOURCES = \
146 test_mesh_local_traffic.c
147test_mesh_local_traffic_bck_LDADD = \
148 $(top_builddir)/src/util/libgnunetutil.la \
149 $(top_builddir)/src/testing/libgnunettesting.la \
150 $(top_builddir)/src/mesh/libgnunetmesh.la
151test_mesh_local_traffic_bck_DEPENDENCIES = \
152 libgnunetmesh.la
153
154test_mesh_local_traffic_both_SOURCES = \
155 test_mesh_local_traffic.c
156test_mesh_local_traffic_both_LDADD = \
157 $(top_builddir)/src/util/libgnunetutil.la \
158 $(top_builddir)/src/testing/libgnunettesting.la \
159 $(top_builddir)/src/mesh/libgnunetmesh.la
160test_mesh_local_traffic_both_DEPENDENCIES = \
141 libgnunetmesh.la 161 libgnunetmesh.la
142 162
143 163
@@ -197,6 +217,9 @@ if ENABLE_TEST_RUN
197TESTS = test_mesh_api \ 217TESTS = test_mesh_api \
198 test_mesh_tree_api \ 218 test_mesh_tree_api \
199 test_mesh_local_1 test_mesh_local_2 \ 219 test_mesh_local_1 test_mesh_local_2 \
220 test_mesh_local_traffic_fwd \
221 test_mesh_local_traffic_bck \
222 test_mesh_local_traffic_both \
200 test_mesh_2dtorus test_mesh_regex \ 223 test_mesh_2dtorus test_mesh_regex \
201 test_mesh_small_unicast test_mesh_small_multicast 224 test_mesh_small_unicast test_mesh_small_multicast
202endif 225endif