aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authort3sserakt <t3ss@posteo.de>2023-06-29 19:12:02 +0200
committert3sserakt <t3ss@posteo.de>2023-06-29 19:12:02 +0200
commit72b4f42f4a6d2b9658bad2075508048d5770ba0a (patch)
tree6e1e13f4b043ebc24c49396019e75bd0936125a1
parentb78f99388e82b61cd6fde7e2f153c50b96dca3dc (diff)
downloadgnunet-72b4f42f4a6d2b9658bad2075508048d5770ba0a.tar.gz
gnunet-72b4f42f4a6d2b9658bad2075508048d5770ba0a.zip
TNG: Deactivated all tests which rely on the old transport api.
-rw-r--r--src/abd/Makefile.am8
-rw-r--r--src/cadet/Makefile.am43
-rw-r--r--src/consensus/Makefile.am2
-rw-r--r--src/core/Makefile.am9
-rw-r--r--src/dhtu/Makefile.am1
-rw-r--r--src/fs/Makefile.am37
-rw-r--r--src/gns/Makefile.am40
-rw-r--r--src/identity/Makefile.am8
-rw-r--r--src/integration-tests/Makefile.am10
-rw-r--r--src/messenger/Makefile.am25
-rw-r--r--src/revocation/Makefile.am4
-rw-r--r--src/rps/Makefile.am10
-rw-r--r--src/scalarproduct/Makefile.am2
-rw-r--r--src/secretsharing/Makefile.am2
-rw-r--r--src/set/Makefile.am6
-rw-r--r--src/seti/Makefile.am2
-rw-r--r--src/setu/Makefile.am4
-rw-r--r--src/testing/Makefile.am17
-rw-r--r--src/topology/Makefile.am9
19 files changed, 115 insertions, 124 deletions
diff --git a/src/abd/Makefile.am b/src/abd/Makefile.am
index ae9248b43..69809291a 100644
--- a/src/abd/Makefile.am
+++ b/src/abd/Makefile.am
@@ -88,10 +88,10 @@ libgnunetabd_la_LDFLAGS = \
88 88
89 89
90check_SCRIPTS = \ 90check_SCRIPTS = \
91 test_abd_issue.sh \ 91 test_abd_issue.sh
92 test_abd_verify_simple.sh \ 92 # test_abd_verify_simple.sh \
93 test_abd_verify.sh \ 93 # test_abd_verify.sh \
94 test_abd_verify_and.sh 94 # test_abd_verify_and.sh
95 95
96if ENABLE_TEST_RUN 96if ENABLE_TEST_RUN
97if HAVE_SQLITE 97if HAVE_SQLITE
diff --git a/src/cadet/Makefile.am b/src/cadet/Makefile.am
index ec95c7490..6cd4b812d 100644
--- a/src/cadet/Makefile.am
+++ b/src/cadet/Makefile.am
@@ -68,7 +68,6 @@ gnunet_service_cadet_LDADD = \
68 $(top_builddir)/src/core/libgnunetcore.la \ 68 $(top_builddir)/src/core/libgnunetcore.la \
69 $(top_builddir)/src/dht/libgnunetdht.la \ 69 $(top_builddir)/src/dht/libgnunetdht.la \
70 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 70 $(top_builddir)/src/statistics/libgnunetstatistics.la \
71 $(top_builddir)/src/transport/libgnunettransport.la \
72 $(top_builddir)/src/transport/libgnunettransportapplication.la \ 71 $(top_builddir)/src/transport/libgnunettransportapplication.la \
73 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \ 72 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
74 $(top_builddir)/src/hello/libgnunethello.la \ 73 $(top_builddir)/src/hello/libgnunethello.la \
@@ -83,27 +82,27 @@ endif
83# noinst_PROGRAMS = gnunet-cadet-profiler 82# noinst_PROGRAMS = gnunet-cadet-profiler
84 83
85check_PROGRAMS = \ 84check_PROGRAMS = \
86 test_cadet_local_mq \ 85 # test_cadet_local_mq \
87 test_cadet_2_forward \ 86 # test_cadet_2_forward \
88 test_cadet_2_forward \ 87 # test_cadet_2_forward \
89 test_cadet_2_signal \ 88 # test_cadet_2_signal \
90 test_cadet_2_keepalive \ 89 # test_cadet_2_keepalive \
91 test_cadet_2_speed \ 90 # test_cadet_2_speed \
92 test_cadet_2_speed_ack \ 91 # test_cadet_2_speed_ack \
93 test_cadet_2_speed_backwards \ 92 # test_cadet_2_speed_backwards \
94 test_cadet_2_speed_reliable \ 93 # test_cadet_2_speed_reliable \
95 test_cadet_2_speed_reliable_backwards \ 94 # test_cadet_2_speed_reliable_backwards \
96 test_cadet_2_reopen \ 95 # test_cadet_2_reopen \
97 test_cadet_2_destroy \ 96 # test_cadet_2_destroy \
98 test_cadet_5_forward \ 97 # test_cadet_5_forward \
99 test_cadet_5_signal \ 98 # test_cadet_5_signal \
100 test_cadet_5_keepalive \ 99 # test_cadet_5_keepalive \
101 test_cadet_5_speed \ 100 # test_cadet_5_speed \
102 test_cadet_5_speed_ack \ 101 # test_cadet_5_speed_ack \
103 test_cadet_5_speed_reliable \ 102 # test_cadet_5_speed_reliable \
104 test_cadet_5_speed_reliable_backwards \ 103 # test_cadet_5_speed_reliable_backwards \
105 test_cadet_5_speed_backwards \ 104 # test_cadet_5_speed_backwards \
106 test_cadet_5_reopen 105 # test_cadet_5_reopen
107 106
108 107
109#gnunet_cadet_profiler_SOURCES = \ 108#gnunet_cadet_profiler_SOURCES = \
diff --git a/src/consensus/Makefile.am b/src/consensus/Makefile.am
index 4a04883c0..27743c45e 100644
--- a/src/consensus/Makefile.am
+++ b/src/consensus/Makefile.am
@@ -93,7 +93,7 @@ libgnunet_plugin_block_consensus_la_LDFLAGS = \
93 93
94 94
95check_PROGRAMS = \ 95check_PROGRAMS = \
96 test_consensus_api 96 # test_consensus_api
97 97
98if ENABLE_TEST_RUN 98if ENABLE_TEST_RUN
99AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 99AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
diff --git a/src/core/Makefile.am b/src/core/Makefile.am
index e51247e18..cad234abd 100644
--- a/src/core/Makefile.am
+++ b/src/core/Makefile.am
@@ -41,7 +41,8 @@ gnunet_service_core_SOURCES = \
41 gnunet-service-core_typemap.c gnunet-service-core_typemap.h 41 gnunet-service-core_typemap.c gnunet-service-core_typemap.h
42gnunet_service_core_LDADD = \ 42gnunet_service_core_LDADD = \
43 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 43 $(top_builddir)/src/statistics/libgnunetstatistics.la \
44 $(top_builddir)/src/transport/libgnunettransport.la \ 44 $(top_builddir)/src/transport/libgnunettransportapplication.la \
45 $(top_builddir)/src/transport/libgnunettransportcore.la \
45 $(top_builddir)/src/util/libgnunetutil.la \ 46 $(top_builddir)/src/util/libgnunetutil.la \
46 $(GN_LIBINTL) $(Z_LIBS) 47 $(GN_LIBINTL) $(Z_LIBS)
47 48
@@ -75,7 +76,6 @@ test_core_api_SOURCES = \
75 test_core_api.c 76 test_core_api.c
76test_core_api_LDADD = \ 77test_core_api_LDADD = \
77 libgnunetcore.la \ 78 libgnunetcore.la \
78 $(top_builddir)/src/transport/libgnunettransport.la \
79 $(top_builddir)/src/ats/libgnunetats.la \ 79 $(top_builddir)/src/ats/libgnunetats.la \
80 $(top_builddir)/src/util/libgnunetutil.la 80 $(top_builddir)/src/util/libgnunetutil.la
81 81
@@ -83,7 +83,6 @@ test_core_api_reliability_SOURCES = \
83 test_core_api_reliability.c 83 test_core_api_reliability.c
84test_core_api_reliability_LDADD = \ 84test_core_api_reliability_LDADD = \
85 libgnunetcore.la \ 85 libgnunetcore.la \
86 $(top_builddir)/src/transport/libgnunettransport.la \
87 $(top_builddir)/src/ats/libgnunetats.la \ 86 $(top_builddir)/src/ats/libgnunetats.la \
88 $(top_builddir)/src/util/libgnunetutil.la 87 $(top_builddir)/src/util/libgnunetutil.la
89 88
@@ -92,7 +91,6 @@ test_core_api_send_to_self_SOURCES = \
92test_core_api_send_to_self_LDADD = \ 91test_core_api_send_to_self_LDADD = \
93 libgnunetcore.la \ 92 libgnunetcore.la \
94 $(top_builddir)/src/testing/libgnunettesting.la \ 93 $(top_builddir)/src/testing/libgnunettesting.la \
95 $(top_builddir)/src/transport/libgnunettransport.la \
96 $(top_builddir)/src/util/libgnunetutil.la 94 $(top_builddir)/src/util/libgnunetutil.la
97 95
98test_core_api_start_only_SOURCES = \ 96test_core_api_start_only_SOURCES = \
@@ -106,7 +104,6 @@ test_core_quota_compliance_symmetric_SOURCES = \
106 test_core_quota_compliance.c 104 test_core_quota_compliance.c
107test_core_quota_compliance_symmetric_LDADD = \ 105test_core_quota_compliance_symmetric_LDADD = \
108 libgnunetcore.la \ 106 libgnunetcore.la \
109 $(top_builddir)/src/transport/libgnunettransport.la \
110 $(top_builddir)/src/ats/libgnunetats.la \ 107 $(top_builddir)/src/ats/libgnunetats.la \
111 $(top_builddir)/src/util/libgnunetutil.la \ 108 $(top_builddir)/src/util/libgnunetutil.la \
112 $(top_builddir)/src/statistics/libgnunetstatistics.la 109 $(top_builddir)/src/statistics/libgnunetstatistics.la
@@ -115,7 +112,6 @@ test_core_quota_compliance_asymmetric_send_limited_SOURCES = \
115 test_core_quota_compliance.c 112 test_core_quota_compliance.c
116test_core_quota_compliance_asymmetric_send_limited_LDADD = \ 113test_core_quota_compliance_asymmetric_send_limited_LDADD = \
117 libgnunetcore.la \ 114 libgnunetcore.la \
118 $(top_builddir)/src/transport/libgnunettransport.la \
119 $(top_builddir)/src/ats/libgnunetats.la \ 115 $(top_builddir)/src/ats/libgnunetats.la \
120 $(top_builddir)/src/util/libgnunetutil.la \ 116 $(top_builddir)/src/util/libgnunetutil.la \
121 $(top_builddir)/src/statistics/libgnunetstatistics.la 117 $(top_builddir)/src/statistics/libgnunetstatistics.la
@@ -124,7 +120,6 @@ test_core_quota_compliance_asymmetric_recv_limited_SOURCES = \
124 test_core_quota_compliance.c 120 test_core_quota_compliance.c
125test_core_quota_compliance_asymmetric_recv_limited_LDADD = \ 121test_core_quota_compliance_asymmetric_recv_limited_LDADD = \
126 libgnunetcore.la \ 122 libgnunetcore.la \
127 $(top_builddir)/src/transport/libgnunettransport.la \
128 $(top_builddir)/src/ats/libgnunetats.la \ 123 $(top_builddir)/src/ats/libgnunetats.la \
129 $(top_builddir)/src/util/libgnunetutil.la \ 124 $(top_builddir)/src/util/libgnunetutil.la \
130 $(top_builddir)/src/statistics/libgnunetstatistics.la 125 $(top_builddir)/src/statistics/libgnunetstatistics.la
diff --git a/src/dhtu/Makefile.am b/src/dhtu/Makefile.am
index 3a3e1c192..f014b1505 100644
--- a/src/dhtu/Makefile.am
+++ b/src/dhtu/Makefile.am
@@ -36,7 +36,6 @@ libgnunet_plugin_dhtu_gnunet_la_LIBADD = \
36 $(top_builddir)/src/ats/libgnunetats.la \ 36 $(top_builddir)/src/ats/libgnunetats.la \
37 $(top_builddir)/src/core/libgnunetcore.la \ 37 $(top_builddir)/src/core/libgnunetcore.la \
38 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \ 38 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
39 $(top_builddir)/src/transport/libgnunettransport.la \
40 $(top_builddir)/src/transport/libgnunettransportapplication.la \ 39 $(top_builddir)/src/transport/libgnunettransportapplication.la \
41 $(top_builddir)/src/hello/libgnunethello.la \ 40 $(top_builddir)/src/hello/libgnunethello.la \
42 $(top_builddir)/src/nse/libgnunetnse.la \ 41 $(top_builddir)/src/nse/libgnunetnse.la \
diff --git a/src/fs/Makefile.am b/src/fs/Makefile.am
index 7773c58ee..0dd00fec0 100644
--- a/src/fs/Makefile.am
+++ b/src/fs/Makefile.am
@@ -277,34 +277,33 @@ endif
277 277
278if ENABLE_TEST_RUN 278if ENABLE_TEST_RUN
279AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 279AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
280TESTS = \ 280TESTS = test_fs_directory \
281 test_fs_directory \
282 test_fs_download \
283 test_fs_download_indexed \
284 test_fs_download_persistence \
285 test_fs_file_information \ 281 test_fs_file_information \
286 test_fs_list_indexed \
287 test_fs_namespace \ 282 test_fs_namespace \
288 test_fs_namespace_list_updateable \ 283 test_fs_namespace_list_updateable \
289 test_fs_publish \
290 test_fs_publish_persistence \
291 test_fs_search \ 284 test_fs_search \
292 test_fs_search_with_and \ 285 test_fs_search_with_and \
293 test_fs_search_probes \ 286 test_fs_search_probes \
294 test_fs_search_persistence \ 287 test_fs_search_persistence \
295 test_fs_start_stop \ 288 test_fs_start_stop \
296 test_fs_unindex \
297 test_fs_unindex_persistence \
298 test_fs_uri \ 289 test_fs_uri \
299 test_fs_test_lib \ 290 test_fs_meta_data
300 test_fs_meta_data \ 291 # test_fs_download \
301 test_gnunet_service_fs_migration \ 292 # test_fs_download_indexed \
302 test_gnunet_service_fs_p2p \ 293 # test_fs_download_persistence \
303 test_gnunet_service_fs_p2p_cadet \ 294 # test_fs_list_indexed \
304 perf_gnunet_service_fs_p2p \ 295 # test_fs_publish \
305 perf_gnunet_service_fs_p2p_index \ 296 # test_fs_publish_persistence \
306 perf_gnunet_service_fs_p2p_respect \ 297 # test_fs_unindex \
307 $(check_SCRIPTS) 298 # test_fs_unindex_persistence \
299 # test_fs_test_lib \
300 # test_gnunet_service_fs_migration \
301 # test_gnunet_service_fs_p2p \
302 # test_gnunet_service_fs_p2p_cadet \
303 # perf_gnunet_service_fs_p2p \
304 # perf_gnunet_service_fs_p2p_index \
305 # perf_gnunet_service_fs_p2p_respect \
306 # $(check_SCRIPTS)
308endif 307endif
309 308
310 309
diff --git a/src/gns/Makefile.am b/src/gns/Makefile.am
index a164efee1..8fcd3c7c0 100644
--- a/src/gns/Makefile.am
+++ b/src/gns/Makefile.am
@@ -239,31 +239,31 @@ check_PROGRAMS = \
239 test_gns_proxy 239 test_gns_proxy
240endif 240endif
241 241
242check_SCRIPTS = \ 242check_SCRIPTS =
243 test_gns_lookup.sh \ 243 # test_gns_lookup.sh \
244 test_gns_config_lookup.sh \ 244 # test_gns_config_lookup.sh \
245 test_gns_ipv6_lookup.sh\ 245 # test_gns_ipv6_lookup.sh\
246 test_gns_txt_lookup.sh\ 246 # test_gns_txt_lookup.sh\
247 test_gns_caa_lookup.sh\ 247 # test_gns_caa_lookup.sh\
248 test_gns_mx_lookup.sh \ 248 # test_gns_mx_lookup.sh \
249 test_gns_gns2dns_lookup.sh \ 249 # test_gns_gns2dns_lookup.sh \
250 test_gns_gns2dns_zkey_lookup.sh \ 250 # test_gns_gns2dns_zkey_lookup.sh \
251 test_gns_gns2dns_cname_lookup.sh \ 251 # test_gns_gns2dns_cname_lookup.sh \
252 test_gns_dht_lookup.sh\ 252 # test_gns_dht_lookup.sh\
253 test_gns_delegated_lookup.sh \ 253 # test_gns_delegated_lookup.sh \
254 test_gns_at_lookup.sh\ 254 # test_gns_at_lookup.sh\
255 test_gns_zkey_lookup.sh\ 255 # test_gns_zkey_lookup.sh\
256 test_gns_rel_expiration.sh\ 256 # test_gns_rel_expiration.sh\
257 test_gns_soa_lookup.sh\ 257 #test_gns_soa_lookup.sh\
258 test_gns_revocation.sh\ 258 #test_gns_revocation.sh\
259 test_gns_redirect_lookup.sh 259 #test_gns_redirect_lookup.sh
260 260
261if HAVE_GNUTLS_CURL 261if HAVE_GNUTLS_CURL
262check_SCRIPTS += \ 262check_SCRIPTS += \
263 test_proxy.sh 263 #test_proxy.sh
264endif 264endif
265check_SCRIPTS += \ 265check_SCRIPTS += \
266 test_plugin_rest_gns.sh 266 #test_plugin_rest_gns.sh
267 267
268EXTRA_DIST = \ 268EXTRA_DIST = \
269 test_gns_defaults.conf \ 269 test_gns_defaults.conf \
diff --git a/src/identity/Makefile.am b/src/identity/Makefile.am
index be6bbf822..b9e9b0205 100644
--- a/src/identity/Makefile.am
+++ b/src/identity/Makefile.am
@@ -74,10 +74,10 @@ check_PROGRAMS = \
74check_SCRIPTS = \ 74check_SCRIPTS = \
75 test_identity_messages.sh 75 test_identity_messages.sh
76 76
77if ENABLE_TEST_RUN 77# if ENABLE_TEST_RUN
78AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 78# AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
79TESTS = $(check_PROGRAMS) $(check_SCRIPTS) 79# TESTS = $(check_PROGRAMS) $(check_SCRIPTS)
80endif 80# endif
81 81
82 82
83test_identity_SOURCES = \ 83test_identity_SOURCES = \
diff --git a/src/integration-tests/Makefile.am b/src/integration-tests/Makefile.am
index 33c6a3832..59daff4f6 100644
--- a/src/integration-tests/Makefile.am
+++ b/src/integration-tests/Makefile.am
@@ -12,11 +12,11 @@ noinst_SCRIPTS = \
12 12
13if HAVE_PYTHON 13if HAVE_PYTHON
14check_SCRIPTS = \ 14check_SCRIPTS = \
15 test_integration_bootstrap_and_connect.py \ 15 # test_integration_bootstrap_and_connect.py \
16 test_integration_disconnect.py \ 16 # test_integration_disconnect.py \
17 test_integration_disconnect_nat.py \ 17 # test_integration_disconnect_nat.py \
18 test_integration_reconnect.py \ 18 # test_integration_reconnect.py \
19 test_integration_reconnect_nat.py 19 # test_integration_reconnect_nat.py
20# test_integration_clique.py 20# test_integration_clique.py
21endif 21endif
22 22
diff --git a/src/messenger/Makefile.am b/src/messenger/Makefile.am
index 4be11f3aa..4a63494bc 100644
--- a/src/messenger/Makefile.am
+++ b/src/messenger/Makefile.am
@@ -97,19 +97,18 @@ gnunet_service_messenger_LDADD = \
97 $(top_builddir)/src/identity/libgnunetidentity.la \ 97 $(top_builddir)/src/identity/libgnunetidentity.la \
98 $(GN_LIBINTL) 98 $(GN_LIBINTL)
99 99
100check_PROGRAMS = \ 100check_PROGRAMS = test_messenger_anonymous \
101 test_messenger_api \ 101 # test_messenger_api \
102 test_messenger_anonymous \ 102 # test_messenger_sync_client \
103 test_messenger_sync_client \ 103 # test_messenger_async_client \
104 test_messenger_async_client \ 104 # test_messenger_worst_client \
105 test_messenger_worst_client \ 105 # test_messenger_sync_p2p \
106 test_messenger_sync_p2p \ 106 # test_messenger_async_p2p \
107 test_messenger_async_p2p \ 107 # test_messenger_worst_p2p \
108 test_messenger_worst_p2p \ 108 # test_messenger_server \
109 test_messenger_server \ 109 # test_messenger_growth \
110 test_messenger_growth \ 110 # test_messenger_ring \
111 test_messenger_ring \ 111 # test_messenger_adapt
112 test_messenger_adapt
113 112
114if ENABLE_TEST_RUN 113if ENABLE_TEST_RUN
115AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 114AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
diff --git a/src/revocation/Makefile.am b/src/revocation/Makefile.am
index ae8231a3c..918ef02bb 100644
--- a/src/revocation/Makefile.am
+++ b/src/revocation/Makefile.am
@@ -92,10 +92,10 @@ test_revocation_LDADD = \
92 $(top_builddir)/src/testbed/libgnunettestbed.la 92 $(top_builddir)/src/testbed/libgnunettestbed.la
93 93
94check_PROGRAMS = \ 94check_PROGRAMS = \
95 test_revocation 95 # test_revocation
96 96
97check_SCRIPTS = \ 97check_SCRIPTS = \
98 test_local_revocation.py 98 # test_local_revocation.py
99 99
100if ENABLE_TEST_RUN 100if ENABLE_TEST_RUN
101 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 101 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
diff --git a/src/rps/Makefile.am b/src/rps/Makefile.am
index b5e8c0617..3d6214cd0 100644
--- a/src/rps/Makefile.am
+++ b/src/rps/Makefile.am
@@ -76,12 +76,12 @@ check_PROGRAMS = \
76 test_service_rps_view \ 76 test_service_rps_view \
77 test_service_rps_custommap \ 77 test_service_rps_custommap \
78 test_service_rps_sampler_elem \ 78 test_service_rps_sampler_elem \
79 test_rps_single_req \
80 test_rps_req_cancel \ 79 test_rps_req_cancel \
81 test_rps_sub \ 80 test_rps_seed_big
82 test_rps_seed_request \ 81 # test_rps_single_req \
83 test_rps_seed_big \ 82 # test_rps_churn
84 test_rps_churn 83 # test_rps_sub \
84 # test_rps_seed_request
85if ENABLE_MALICIOUS 85if ENABLE_MALICIOUS
86check_PROGRAMS += \ 86check_PROGRAMS += \
87 test_rps_malicious_1 \ 87 test_rps_malicious_1 \
diff --git a/src/scalarproduct/Makefile.am b/src/scalarproduct/Makefile.am
index cf05e8377..8b3b160c6 100644
--- a/src/scalarproduct/Makefile.am
+++ b/src/scalarproduct/Makefile.am
@@ -101,7 +101,7 @@ check_SCRIPTS = \
101 test_scalarproduct_negativezero.sh 101 test_scalarproduct_negativezero.sh
102 102
103check_PROGRAMS = \ 103check_PROGRAMS = \
104 test_ecc_scalarproduct 104 # test_ecc_scalarproduct
105 105
106if ENABLE_TEST_RUN 106if ENABLE_TEST_RUN
107 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 107 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
diff --git a/src/secretsharing/Makefile.am b/src/secretsharing/Makefile.am
index 5f49947bc..b13d5a838 100644
--- a/src/secretsharing/Makefile.am
+++ b/src/secretsharing/Makefile.am
@@ -55,7 +55,7 @@ libgnunetsecretsharing_la_LDFLAGS = \
55 $(GN_LIB_LDFLAGS) 55 $(GN_LIB_LDFLAGS)
56 56
57check_PROGRAMS = \ 57check_PROGRAMS = \
58 test_secretsharing_api 58 # test_secretsharing_api
59 59
60if ENABLE_TEST_RUN 60if ENABLE_TEST_RUN
61AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 61AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
diff --git a/src/set/Makefile.am b/src/set/Makefile.am
index bf4c8229c..a9e39a728 100644
--- a/src/set/Makefile.am
+++ b/src/set/Makefile.am
@@ -66,9 +66,9 @@ libgnunetset_la_LDFLAGS = \
66 $(GN_LIB_LDFLAGS) 66 $(GN_LIB_LDFLAGS)
67 67
68check_PROGRAMS = \ 68check_PROGRAMS = \
69 test_set_api \ 69 # test_set_api \
70 test_set_union_result_symmetric \ 70 # test_set_union_result_symmetric \
71 test_set_intersection_result_full \ 71 # test_set_intersection_result_full \
72 test_set_union_copy 72 test_set_union_copy
73 73
74if ENABLE_TEST_RUN 74if ENABLE_TEST_RUN
diff --git a/src/seti/Makefile.am b/src/seti/Makefile.am
index 37484b51f..6b0df430b 100644
--- a/src/seti/Makefile.am
+++ b/src/seti/Makefile.am
@@ -54,7 +54,7 @@ libgnunetseti_la_LDFLAGS = \
54 $(GN_LIB_LDFLAGS) 54 $(GN_LIB_LDFLAGS)
55 55
56check_PROGRAMS = \ 56check_PROGRAMS = \
57 test_seti_api 57 # test_seti_api
58 58
59if ENABLE_TEST_RUN 59if ENABLE_TEST_RUN
60AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 60AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
diff --git a/src/setu/Makefile.am b/src/setu/Makefile.am
index 5c33148cd..377fe82c3 100644
--- a/src/setu/Makefile.am
+++ b/src/setu/Makefile.am
@@ -64,8 +64,8 @@ libgnunetsetu_la_LDFLAGS = \
64 $(GN_LIB_LDFLAGS) 64 $(GN_LIB_LDFLAGS)
65 65
66check_PROGRAMS = \ 66check_PROGRAMS = \
67 test_setu_api \ 67 # test_setu_api \
68 perf_setu_api 68 # perf_setu_api
69 69
70if ENABLE_TEST_RUN 70if ENABLE_TEST_RUN
71AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 71AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
diff --git a/src/testing/Makefile.am b/src/testing/Makefile.am
index 1f6ccc15b..fae442b56 100644
--- a/src/testing/Makefile.am
+++ b/src/testing/Makefile.am
@@ -29,6 +29,7 @@ gnunet_cmds_helper_LDADD = $(XLIB) \
29 $(LTLIBINTL) $(Z_LIBS) 29 $(LTLIBINTL) $(Z_LIBS)
30 30
31libgnunettesting_la_SOURCES = \ 31libgnunettesting_la_SOURCES = \
32 testing_api_cmd_exec_bash_script.c \
32 testing_api_cmd_barrier.c \ 33 testing_api_cmd_barrier.c \
33 testing_api_cmd_barrier_reached.c \ 34 testing_api_cmd_barrier_reached.c \
34 testing_api_cmd_end.c \ 35 testing_api_cmd_end.c \
@@ -81,14 +82,14 @@ check_PROGRAMS = \
81 test_testing_peerstartup2 \ 82 test_testing_peerstartup2 \
82 test_testing_sharedservices 83 test_testing_sharedservices
83 84
84if ENABLE_TEST_RUN 85# if ENABLE_TEST_RUN_TESTING
85AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 86# AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
86TESTS = \ 87# TESTS = \
87 test_testing_portreservation \ 88# test_testing_portreservation \
88 test_testing_peerstartup \ 89# test_testing_peerstartup \
89 test_testing_peerstartup2 \ 90# test_testing_peerstartup2 \
90 test_testing_servicestartup 91# test_testing_servicestartup
91endif 92# endif
92 93
93test_testing_portreservation_SOURCES = \ 94test_testing_portreservation_SOURCES = \
94 test_testing_portreservation.c 95 test_testing_portreservation.c
diff --git a/src/topology/Makefile.am b/src/topology/Makefile.am
index 682f052dd..3d7ceca46 100644
--- a/src/topology/Makefile.am
+++ b/src/topology/Makefile.am
@@ -35,7 +35,6 @@ gnunet_daemon_topology_LDADD = \
35 $(top_builddir)/src/core/libgnunetcore.la \ 35 $(top_builddir)/src/core/libgnunetcore.la \
36 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \ 36 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
37 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 37 $(top_builddir)/src/statistics/libgnunetstatistics.la \
38 $(top_builddir)/src/transport/libgnunettransport.la \
39 $(top_builddir)/src/transport/libgnunettransportapplication.la \ 38 $(top_builddir)/src/transport/libgnunettransportapplication.la \
40 $(top_builddir)/src/ats/libgnunetats.la \ 39 $(top_builddir)/src/ats/libgnunetats.la \
41 $(top_builddir)/src/hello/libgnunethello.la \ 40 $(top_builddir)/src/hello/libgnunethello.la \
@@ -46,10 +45,10 @@ gnunet_daemon_topology_LDADD = \
46check_PROGRAMS = \ 45check_PROGRAMS = \
47 test_gnunet_daemon_topology 46 test_gnunet_daemon_topology
48 47
49if ENABLE_TEST_RUN 48# if ENABLE_TEST_RUN
50AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 49# AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
51TESTS = $(check_PROGRAMS) 50# TESTS = $(check_PROGRAMS)
52endif 51# endif
53 52
54test_gnunet_daemon_topology_SOURCES = \ 53test_gnunet_daemon_topology_SOURCES = \
55 test_gnunet_daemon_topology.c 54 test_gnunet_daemon_topology.c