aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2020-12-30 20:59:35 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2020-12-30 20:59:35 +0900
commitcc780f66a4fe096704ab264dce2c6b15b1cf50c5 (patch)
treea291d7b1246bf6b6bccd3e0c76b32fab058266ff /src
parentc0465ff926f1b87a375ff320d367cbbabfddb38f (diff)
parent1f489833705ee9fc66686ed3045cc5dba56dfd39 (diff)
downloadgnunet-cc780f66a4fe096704ab264dce2c6b15b1cf50c5.tar.gz
gnunet-cc780f66a4fe096704ab264dce2c6b15b1cf50c5.zip
Merge branch 'master' of ssh://gnunet.org/gnunet
Diffstat (limited to 'src')
-rwxr-xr-xsrc/gns/test_gnunet_gns.sh.in2
-rwxr-xr-xsrc/gns/test_proxy.sh8
-rw-r--r--src/gnsrecord/Makefile.am2
-rw-r--r--src/namecache/Makefile.am1
-rw-r--r--src/namestore/Makefile.am65
-rwxr-xr-xsrc/reclaim/test_reclaim_consume.sh6
-rwxr-xr-xsrc/reclaim/test_reclaim_issue.sh2
-rwxr-xr-xsrc/reclaim/test_reclaim_revoke.sh10
-rwxr-xr-xsrc/scalarproduct/test_scalarproduct.sh4
-rwxr-xr-xsrc/scalarproduct/test_scalarproduct_negative.sh4
-rwxr-xr-xsrc/scalarproduct/test_scalarproduct_negativezero.sh4
-rw-r--r--src/transport/Makefile.am6
12 files changed, 85 insertions, 29 deletions
diff --git a/src/gns/test_gnunet_gns.sh.in b/src/gns/test_gnunet_gns.sh.in
index 8cdd062c7..8a96ff034 100755
--- a/src/gns/test_gnunet_gns.sh.in
+++ b/src/gns/test_gnunet_gns.sh.in
@@ -1,4 +1,4 @@
1#!/bin/sh 1#!/bin/bash
2# This file is in the public domain. 2# This file is in the public domain.
3# test -z being correct was a false assumption here. 3# test -z being correct was a false assumption here.
4# I have no executable 'fooble', but this will 4# I have no executable 'fooble', but this will
diff --git a/src/gns/test_proxy.sh b/src/gns/test_proxy.sh
index 7c17cd4c5..ee288413f 100755
--- a/src/gns/test_proxy.sh
+++ b/src/gns/test_proxy.sh
@@ -31,10 +31,10 @@ cat local.crt > /tmp/server_cacert.pem
31cat local.key >> /tmp/server_cacert.pem 31cat local.key >> /tmp/server_cacert.pem
32 32
33gnunet-identity -C test -c test_gns_proxy.conf 33gnunet-identity -C test -c test_gns_proxy.conf
34gnunet-namestore -p -z test -a -n www -t A -V 127.0.0.1 -e never -c test_gns_proxy.conf 34gnunet-namestore -p -z "test" -a -n www -t A -V 127.0.0.1 -e never -c test_gns_proxy.conf
35gnunet-namestore -p -z test -a -n www -t LEHO -V "test.local" -e never -c test_gns_proxy.conf 35gnunet-namestore -p -z "test" -a -n www -t LEHO -V "test.local" -e never -c test_gns_proxy.conf
36gnunet-namestore -p -z test -a -n www -t BOX -V "$OLDBOXVALUE" -e never -c test_gns_proxy.conf 36gnunet-namestore -p -z "test" -a -n www -t BOX -V "$OLDBOXVALUE" -e never -c test_gns_proxy.conf
37gnunet-namestore -p -z test -a -n www -t BOX -V "$BOXVALUE" -e never -c test_gns_proxy.conf 37gnunet-namestore -p -z "test" -a -n www -t BOX -V "$BOXVALUE" -e never -c test_gns_proxy.conf
38 38
39gnunet-arm -i gns-proxy -c test_gns_proxy.conf 39gnunet-arm -i gns-proxy -c test_gns_proxy.conf
40 40
diff --git a/src/gnsrecord/Makefile.am b/src/gnsrecord/Makefile.am
index ab604eb92..7c0df461f 100644
--- a/src/gnsrecord/Makefile.am
+++ b/src/gnsrecord/Makefile.am
@@ -106,6 +106,7 @@ test_gnsrecord_crypto_SOURCES = \
106 test_gnsrecord_crypto.c 106 test_gnsrecord_crypto.c
107test_gnsrecord_crypto_LDADD = \ 107test_gnsrecord_crypto_LDADD = \
108 $(top_builddir)/src/testing/libgnunettesting.la \ 108 $(top_builddir)/src/testing/libgnunettesting.la \
109 $(top_builddir)/src/identity/libgnunetidentity.la \
109 libgnunetgnsrecord.la \ 110 libgnunetgnsrecord.la \
110 $(top_builddir)/src/util/libgnunetutil.la 111 $(top_builddir)/src/util/libgnunetutil.la
111 112
@@ -114,5 +115,6 @@ perf_gnsrecord_crypto_SOURCES = \
114 perf_gnsrecord_crypto.c 115 perf_gnsrecord_crypto.c
115perf_gnsrecord_crypto_LDADD = \ 116perf_gnsrecord_crypto_LDADD = \
116 $(top_builddir)/src/testing/libgnunettesting.la \ 117 $(top_builddir)/src/testing/libgnunettesting.la \
118 $(top_builddir)/src/identity/libgnunetidentity.la \
117 libgnunetgnsrecord.la \ 119 libgnunetgnsrecord.la \
118 $(top_builddir)/src/util/libgnunetutil.la 120 $(top_builddir)/src/util/libgnunetutil.la
diff --git a/src/namecache/Makefile.am b/src/namecache/Makefile.am
index 836a6b5d9..8ffa85ddb 100644
--- a/src/namecache/Makefile.am
+++ b/src/namecache/Makefile.am
@@ -148,6 +148,7 @@ test_namecache_api_cache_block_SOURCES = \
148 test_namecache_api_cache_block.c 148 test_namecache_api_cache_block.c
149test_namecache_api_cache_block_LDADD = \ 149test_namecache_api_cache_block_LDADD = \
150 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 150 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
151 $(top_builddir)/src/identity/libgnunetidentity.la \
151 libgnunetnamecache.la \ 152 libgnunetnamecache.la \
152 $(top_builddir)/src/testing/libgnunettesting.la \ 153 $(top_builddir)/src/testing/libgnunettesting.la \
153 $(top_builddir)/src/util/libgnunetutil.la 154 $(top_builddir)/src/util/libgnunetutil.la
diff --git a/src/namestore/Makefile.am b/src/namestore/Makefile.am
index 3a92f98c9..df4e5d662 100644
--- a/src/namestore/Makefile.am
+++ b/src/namestore/Makefile.am
@@ -268,6 +268,7 @@ test_namestore_api_store_update_flat_SOURCES = \
268test_namestore_api_store_update_flat_LDADD = \ 268test_namestore_api_store_update_flat_LDADD = \
269 $(top_builddir)/src/testing/libgnunettesting.la \ 269 $(top_builddir)/src/testing/libgnunettesting.la \
270 $(top_builddir)/src/util/libgnunetutil.la \ 270 $(top_builddir)/src/util/libgnunetutil.la \
271 $(top_builddir)/src/identity/libgnunetidentity.la \
271 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 272 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
272 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 273 $(top_builddir)/src/namecache/libgnunetnamecache.la \
273 libgnunetnamestore.la 274 libgnunetnamestore.la
@@ -277,6 +278,7 @@ test_namestore_api_store_update_sqlite_SOURCES = \
277test_namestore_api_store_update_sqlite_LDADD = \ 278test_namestore_api_store_update_sqlite_LDADD = \
278 $(top_builddir)/src/testing/libgnunettesting.la \ 279 $(top_builddir)/src/testing/libgnunettesting.la \
279 $(top_builddir)/src/util/libgnunetutil.la \ 280 $(top_builddir)/src/util/libgnunetutil.la \
281 $(top_builddir)/src/identity/libgnunetidentity.la \
280 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 282 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
281 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 283 $(top_builddir)/src/namecache/libgnunetnamecache.la \
282 libgnunetnamestore.la 284 libgnunetnamestore.la
@@ -286,6 +288,7 @@ test_namestore_api_store_update_postgres_SOURCES = \
286test_namestore_api_store_update_postgres_LDADD = \ 288test_namestore_api_store_update_postgres_LDADD = \
287 $(top_builddir)/src/testing/libgnunettesting.la \ 289 $(top_builddir)/src/testing/libgnunettesting.la \
288 $(top_builddir)/src/util/libgnunetutil.la \ 290 $(top_builddir)/src/util/libgnunetutil.la \
291 $(top_builddir)/src/identity/libgnunetidentity.la \
289 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 292 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
290 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 293 $(top_builddir)/src/namecache/libgnunetnamecache.la \
291 libgnunetnamestore.la 294 libgnunetnamestore.la
@@ -294,6 +297,7 @@ test_namestore_api_lookup_public_flat_SOURCES = \
294 test_namestore_api_lookup_public.c 297 test_namestore_api_lookup_public.c
295test_namestore_api_lookup_public_flat_LDADD = \ 298test_namestore_api_lookup_public_flat_LDADD = \
296 $(top_builddir)/src/testing/libgnunettesting.la \ 299 $(top_builddir)/src/testing/libgnunettesting.la \
300 $(top_builddir)/src/identity/libgnunetidentity.la \
297 $(top_builddir)/src/util/libgnunetutil.la \ 301 $(top_builddir)/src/util/libgnunetutil.la \
298 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 302 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
299 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 303 $(top_builddir)/src/namecache/libgnunetnamecache.la \
@@ -304,6 +308,7 @@ test_namestore_api_lookup_public_sqlite_SOURCES = \
304test_namestore_api_lookup_public_sqlite_LDADD = \ 308test_namestore_api_lookup_public_sqlite_LDADD = \
305 $(top_builddir)/src/testing/libgnunettesting.la \ 309 $(top_builddir)/src/testing/libgnunettesting.la \
306 $(top_builddir)/src/util/libgnunetutil.la \ 310 $(top_builddir)/src/util/libgnunetutil.la \
311 $(top_builddir)/src/identity/libgnunetidentity.la \
307 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 312 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
308 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 313 $(top_builddir)/src/namecache/libgnunetnamecache.la \
309 libgnunetnamestore.la 314 libgnunetnamestore.la
@@ -313,6 +318,7 @@ test_namestore_api_lookup_public_postgres_SOURCES = \
313test_namestore_api_lookup_public_postgres_LDADD = \ 318test_namestore_api_lookup_public_postgres_LDADD = \
314 $(top_builddir)/src/testing/libgnunettesting.la \ 319 $(top_builddir)/src/testing/libgnunettesting.la \
315 $(top_builddir)/src/util/libgnunetutil.la \ 320 $(top_builddir)/src/util/libgnunetutil.la \
321 $(top_builddir)/src/identity/libgnunetidentity.la \
316 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 322 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
317 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 323 $(top_builddir)/src/namecache/libgnunetnamecache.la \
318 libgnunetnamestore.la 324 libgnunetnamestore.la
@@ -322,6 +328,7 @@ test_namestore_api_lookup_nick_sqlite_SOURCES = \
322test_namestore_api_lookup_nick_sqlite_LDADD = \ 328test_namestore_api_lookup_nick_sqlite_LDADD = \
323 $(top_builddir)/src/testing/libgnunettesting.la \ 329 $(top_builddir)/src/testing/libgnunettesting.la \
324 $(top_builddir)/src/util/libgnunetutil.la \ 330 $(top_builddir)/src/util/libgnunetutil.la \
331 $(top_builddir)/src/identity/libgnunetidentity.la \
325 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 332 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
326 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 333 $(top_builddir)/src/namecache/libgnunetnamecache.la \
327 libgnunetnamestore.la 334 libgnunetnamestore.la
@@ -331,6 +338,7 @@ test_namestore_api_lookup_nick_postgres_SOURCES = \
331test_namestore_api_lookup_nick_postgres_LDADD = \ 338test_namestore_api_lookup_nick_postgres_LDADD = \
332 $(top_builddir)/src/testing/libgnunettesting.la \ 339 $(top_builddir)/src/testing/libgnunettesting.la \
333 $(top_builddir)/src/util/libgnunetutil.la \ 340 $(top_builddir)/src/util/libgnunetutil.la \
341 $(top_builddir)/src/identity/libgnunetidentity.la \
334 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 342 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
335 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 343 $(top_builddir)/src/namecache/libgnunetnamecache.la \
336 libgnunetnamestore.la 344 libgnunetnamestore.la
@@ -339,6 +347,7 @@ test_namestore_api_lookup_nick_flat_SOURCES = \
339 test_namestore_api_lookup_nick.c 347 test_namestore_api_lookup_nick.c
340test_namestore_api_lookup_nick_flat_LDADD = \ 348test_namestore_api_lookup_nick_flat_LDADD = \
341 $(top_builddir)/src/testing/libgnunettesting.la \ 349 $(top_builddir)/src/testing/libgnunettesting.la \
350 $(top_builddir)/src/identity/libgnunetidentity.la \
342 $(top_builddir)/src/util/libgnunetutil.la \ 351 $(top_builddir)/src/util/libgnunetutil.la \
343 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 352 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
344 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 353 $(top_builddir)/src/namecache/libgnunetnamecache.la \
@@ -348,6 +357,7 @@ test_namestore_api_lookup_private_flat_SOURCES = \
348 test_namestore_api_lookup_private.c 357 test_namestore_api_lookup_private.c
349test_namestore_api_lookup_private_flat_LDADD = \ 358test_namestore_api_lookup_private_flat_LDADD = \
350 $(top_builddir)/src/testing/libgnunettesting.la \ 359 $(top_builddir)/src/testing/libgnunettesting.la \
360 $(top_builddir)/src/identity/libgnunetidentity.la \
351 $(top_builddir)/src/util/libgnunetutil.la \ 361 $(top_builddir)/src/util/libgnunetutil.la \
352 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 362 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
353 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 363 $(top_builddir)/src/namecache/libgnunetnamecache.la \
@@ -357,6 +367,7 @@ test_namestore_api_lookup_private_sqlite_SOURCES = \
357 test_namestore_api_lookup_private.c 367 test_namestore_api_lookup_private.c
358test_namestore_api_lookup_private_sqlite_LDADD = \ 368test_namestore_api_lookup_private_sqlite_LDADD = \
359 $(top_builddir)/src/testing/libgnunettesting.la \ 369 $(top_builddir)/src/testing/libgnunettesting.la \
370 $(top_builddir)/src/identity/libgnunetidentity.la \
360 $(top_builddir)/src/util/libgnunetutil.la \ 371 $(top_builddir)/src/util/libgnunetutil.la \
361 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 372 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
362 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 373 $(top_builddir)/src/namecache/libgnunetnamecache.la \
@@ -365,6 +376,7 @@ test_namestore_api_lookup_private_sqlite_LDADD = \
365test_namestore_api_lookup_private_postgres_SOURCES = \ 376test_namestore_api_lookup_private_postgres_SOURCES = \
366 test_namestore_api_lookup_private.c 377 test_namestore_api_lookup_private.c
367test_namestore_api_lookup_private_postgres_LDADD = \ 378test_namestore_api_lookup_private_postgres_LDADD = \
379 $(top_builddir)/src/identity/libgnunetidentity.la \
368 $(top_builddir)/src/testing/libgnunettesting.la \ 380 $(top_builddir)/src/testing/libgnunettesting.la \
369 $(top_builddir)/src/util/libgnunetutil.la \ 381 $(top_builddir)/src/util/libgnunetutil.la \
370 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 382 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
@@ -375,6 +387,7 @@ test_namestore_api_lookup_shadow_flat_SOURCES = \
375 test_namestore_api_lookup_shadow.c 387 test_namestore_api_lookup_shadow.c
376test_namestore_api_lookup_shadow_flat_LDADD = \ 388test_namestore_api_lookup_shadow_flat_LDADD = \
377 $(top_builddir)/src/testing/libgnunettesting.la \ 389 $(top_builddir)/src/testing/libgnunettesting.la \
390 $(top_builddir)/src/identity/libgnunetidentity.la \
378 $(top_builddir)/src/util/libgnunetutil.la \ 391 $(top_builddir)/src/util/libgnunetutil.la \
379 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 392 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
380 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 393 $(top_builddir)/src/namecache/libgnunetnamecache.la \
@@ -385,6 +398,7 @@ test_namestore_api_lookup_shadow_sqlite_SOURCES = \
385test_namestore_api_lookup_shadow_sqlite_LDADD = \ 398test_namestore_api_lookup_shadow_sqlite_LDADD = \
386 $(top_builddir)/src/testing/libgnunettesting.la \ 399 $(top_builddir)/src/testing/libgnunettesting.la \
387 $(top_builddir)/src/util/libgnunetutil.la \ 400 $(top_builddir)/src/util/libgnunetutil.la \
401 $(top_builddir)/src/identity/libgnunetidentity.la \
388 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 402 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
389 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 403 $(top_builddir)/src/namecache/libgnunetnamecache.la \
390 libgnunetnamestore.la 404 libgnunetnamestore.la
@@ -394,6 +408,7 @@ test_namestore_api_lookup_shadow_postgres_SOURCES = \
394test_namestore_api_lookup_shadow_postgres_LDADD = \ 408test_namestore_api_lookup_shadow_postgres_LDADD = \
395 $(top_builddir)/src/testing/libgnunettesting.la \ 409 $(top_builddir)/src/testing/libgnunettesting.la \
396 $(top_builddir)/src/util/libgnunetutil.la \ 410 $(top_builddir)/src/util/libgnunetutil.la \
411 $(top_builddir)/src/identity/libgnunetidentity.la \
397 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 412 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
398 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 413 $(top_builddir)/src/namecache/libgnunetnamecache.la \
399 libgnunetnamestore.la 414 libgnunetnamestore.la
@@ -403,6 +418,7 @@ test_namestore_api_lookup_shadow_filter_flat_SOURCES = \
403test_namestore_api_lookup_shadow_filter_flat_LDADD = \ 418test_namestore_api_lookup_shadow_filter_flat_LDADD = \
404 $(top_builddir)/src/testing/libgnunettesting.la \ 419 $(top_builddir)/src/testing/libgnunettesting.la \
405 $(top_builddir)/src/util/libgnunetutil.la \ 420 $(top_builddir)/src/util/libgnunetutil.la \
421 $(top_builddir)/src/identity/libgnunetidentity.la \
406 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 422 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
407 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 423 $(top_builddir)/src/namecache/libgnunetnamecache.la \
408 libgnunetnamestore.la 424 libgnunetnamestore.la
@@ -411,6 +427,7 @@ test_namestore_api_lookup_shadow_filter_sqlite_SOURCES = \
411 test_namestore_api_lookup_shadow_filter.c 427 test_namestore_api_lookup_shadow_filter.c
412test_namestore_api_lookup_shadow_filter_sqlite_LDADD = \ 428test_namestore_api_lookup_shadow_filter_sqlite_LDADD = \
413 $(top_builddir)/src/testing/libgnunettesting.la \ 429 $(top_builddir)/src/testing/libgnunettesting.la \
430 $(top_builddir)/src/identity/libgnunetidentity.la \
414 $(top_builddir)/src/util/libgnunetutil.la \ 431 $(top_builddir)/src/util/libgnunetutil.la \
415 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 432 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
416 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 433 $(top_builddir)/src/namecache/libgnunetnamecache.la \
@@ -419,6 +436,7 @@ test_namestore_api_lookup_shadow_filter_postgres_SOURCES = \
419 test_namestore_api_lookup_shadow_filter.c 436 test_namestore_api_lookup_shadow_filter.c
420test_namestore_api_lookup_shadow_filter_postgres_LDADD = \ 437test_namestore_api_lookup_shadow_filter_postgres_LDADD = \
421 $(top_builddir)/src/testing/libgnunettesting.la \ 438 $(top_builddir)/src/testing/libgnunettesting.la \
439 $(top_builddir)/src/identity/libgnunetidentity.la \
422 $(top_builddir)/src/util/libgnunetutil.la \ 440 $(top_builddir)/src/util/libgnunetutil.la \
423 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 441 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
424 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 442 $(top_builddir)/src/namecache/libgnunetnamecache.la \
@@ -427,6 +445,7 @@ test_namestore_api_lookup_shadow_filter_postgres_LDADD = \
427test_namestore_api_remove_sqlite_SOURCES = \ 445test_namestore_api_remove_sqlite_SOURCES = \
428 test_namestore_api_remove.c 446 test_namestore_api_remove.c
429test_namestore_api_remove_sqlite_LDADD = \ 447test_namestore_api_remove_sqlite_LDADD = \
448 $(top_builddir)/src/identity/libgnunetidentity.la \
430 $(top_builddir)/src/testing/libgnunettesting.la \ 449 $(top_builddir)/src/testing/libgnunettesting.la \
431 $(top_builddir)/src/util/libgnunetutil.la \ 450 $(top_builddir)/src/util/libgnunetutil.la \
432 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 451 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
@@ -435,6 +454,7 @@ test_namestore_api_remove_sqlite_LDADD = \
435test_namestore_api_remove_postgres_SOURCES = \ 454test_namestore_api_remove_postgres_SOURCES = \
436 test_namestore_api_remove.c 455 test_namestore_api_remove.c
437test_namestore_api_remove_postgres_LDADD = \ 456test_namestore_api_remove_postgres_LDADD = \
457 $(top_builddir)/src/identity/libgnunetidentity.la \
438 $(top_builddir)/src/testing/libgnunettesting.la \ 458 $(top_builddir)/src/testing/libgnunettesting.la \
439 $(top_builddir)/src/util/libgnunetutil.la \ 459 $(top_builddir)/src/util/libgnunetutil.la \
440 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 460 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
@@ -444,6 +464,7 @@ test_namestore_api_remove_flat_SOURCES = \
444 test_namestore_api_remove.c 464 test_namestore_api_remove.c
445test_namestore_api_remove_flat_LDADD = \ 465test_namestore_api_remove_flat_LDADD = \
446 $(top_builddir)/src/testing/libgnunettesting.la \ 466 $(top_builddir)/src/testing/libgnunettesting.la \
467 $(top_builddir)/src/identity/libgnunetidentity.la \
447 $(top_builddir)/src/util/libgnunetutil.la \ 468 $(top_builddir)/src/util/libgnunetutil.la \
448 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 469 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
449 libgnunetnamestore.la 470 libgnunetnamestore.la
@@ -452,6 +473,7 @@ test_namestore_api_remove_not_existing_record_flat_SOURCES = \
452 test_namestore_api_remove_not_existing_record.c 473 test_namestore_api_remove_not_existing_record.c
453test_namestore_api_remove_not_existing_record_flat_LDADD = \ 474test_namestore_api_remove_not_existing_record_flat_LDADD = \
454 $(top_builddir)/src/testing/libgnunettesting.la \ 475 $(top_builddir)/src/testing/libgnunettesting.la \
476 $(top_builddir)/src/identity/libgnunetidentity.la \
455 $(top_builddir)/src/util/libgnunetutil.la \ 477 $(top_builddir)/src/util/libgnunetutil.la \
456 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 478 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
457 libgnunetnamestore.la 479 libgnunetnamestore.la
@@ -461,6 +483,7 @@ test_namestore_api_remove_not_existing_record_sqlite_SOURCES = \
461test_namestore_api_remove_not_existing_record_sqlite_LDADD = \ 483test_namestore_api_remove_not_existing_record_sqlite_LDADD = \
462 $(top_builddir)/src/testing/libgnunettesting.la \ 484 $(top_builddir)/src/testing/libgnunettesting.la \
463 $(top_builddir)/src/util/libgnunetutil.la \ 485 $(top_builddir)/src/util/libgnunetutil.la \
486 $(top_builddir)/src/identity/libgnunetidentity.la \
464 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 487 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
465 libgnunetnamestore.la 488 libgnunetnamestore.la
466 489
@@ -468,6 +491,7 @@ test_namestore_api_remove_not_existing_record_postgres_SOURCES = \
468 test_namestore_api_remove_not_existing_record.c 491 test_namestore_api_remove_not_existing_record.c
469test_namestore_api_remove_not_existing_record_postgres_LDADD = \ 492test_namestore_api_remove_not_existing_record_postgres_LDADD = \
470 $(top_builddir)/src/testing/libgnunettesting.la \ 493 $(top_builddir)/src/testing/libgnunettesting.la \
494 $(top_builddir)/src/identity/libgnunetidentity.la \
471 $(top_builddir)/src/util/libgnunetutil.la \ 495 $(top_builddir)/src/util/libgnunetutil.la \
472 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 496 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
473 libgnunetnamestore.la 497 libgnunetnamestore.la
@@ -475,6 +499,7 @@ test_namestore_api_remove_not_existing_record_postgres_LDADD = \
475test_namestore_api_zone_to_name_flat_SOURCES = \ 499test_namestore_api_zone_to_name_flat_SOURCES = \
476 test_namestore_api_zone_to_name.c 500 test_namestore_api_zone_to_name.c
477test_namestore_api_zone_to_name_flat_LDADD = \ 501test_namestore_api_zone_to_name_flat_LDADD = \
502 $(top_builddir)/src/identity/libgnunetidentity.la \
478 $(top_builddir)/src/testing/libgnunettesting.la \ 503 $(top_builddir)/src/testing/libgnunettesting.la \
479 $(top_builddir)/src/util/libgnunetutil.la \ 504 $(top_builddir)/src/util/libgnunetutil.la \
480 libgnunetnamestore.la 505 libgnunetnamestore.la
@@ -482,6 +507,7 @@ test_namestore_api_zone_to_name_flat_LDADD = \
482test_namestore_api_zone_to_name_sqlite_SOURCES = \ 507test_namestore_api_zone_to_name_sqlite_SOURCES = \
483 test_namestore_api_zone_to_name.c 508 test_namestore_api_zone_to_name.c
484test_namestore_api_zone_to_name_sqlite_LDADD = \ 509test_namestore_api_zone_to_name_sqlite_LDADD = \
510 $(top_builddir)/src/identity/libgnunetidentity.la \
485 $(top_builddir)/src/testing/libgnunettesting.la \ 511 $(top_builddir)/src/testing/libgnunettesting.la \
486 $(top_builddir)/src/util/libgnunetutil.la \ 512 $(top_builddir)/src/util/libgnunetutil.la \
487 libgnunetnamestore.la 513 libgnunetnamestore.la
@@ -489,6 +515,7 @@ test_namestore_api_zone_to_name_sqlite_LDADD = \
489test_namestore_api_zone_to_name_postgres_SOURCES = \ 515test_namestore_api_zone_to_name_postgres_SOURCES = \
490 test_namestore_api_zone_to_name.c 516 test_namestore_api_zone_to_name.c
491test_namestore_api_zone_to_name_postgres_LDADD = \ 517test_namestore_api_zone_to_name_postgres_LDADD = \
518 $(top_builddir)/src/identity/libgnunetidentity.la \
492 $(top_builddir)/src/testing/libgnunettesting.la \ 519 $(top_builddir)/src/testing/libgnunettesting.la \
493 $(top_builddir)/src/util/libgnunetutil.la \ 520 $(top_builddir)/src/util/libgnunetutil.la \
494 libgnunetnamestore.la 521 libgnunetnamestore.la
@@ -498,12 +525,14 @@ test_namestore_api_monitoring_flat_SOURCES = \
498test_namestore_api_monitoring_flat_LDADD = \ 525test_namestore_api_monitoring_flat_LDADD = \
499 $(top_builddir)/src/testing/libgnunettesting.la \ 526 $(top_builddir)/src/testing/libgnunettesting.la \
500 libgnunetnamestore.la \ 527 libgnunetnamestore.la \
528 $(top_builddir)/src/identity/libgnunetidentity.la \
501 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 529 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
502 $(top_builddir)/src/util/libgnunetutil.la 530 $(top_builddir)/src/util/libgnunetutil.la
503 531
504test_namestore_api_monitoring_sqlite_SOURCES = \ 532test_namestore_api_monitoring_sqlite_SOURCES = \
505 test_namestore_api_monitoring.c 533 test_namestore_api_monitoring.c
506test_namestore_api_monitoring_sqlite_LDADD = \ 534test_namestore_api_monitoring_sqlite_LDADD = \
535 $(top_builddir)/src/identity/libgnunetidentity.la \
507 $(top_builddir)/src/testing/libgnunettesting.la \ 536 $(top_builddir)/src/testing/libgnunettesting.la \
508 libgnunetnamestore.la \ 537 libgnunetnamestore.la \
509 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 538 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
@@ -513,6 +542,7 @@ test_namestore_api_monitoring_postgres_SOURCES = \
513 test_namestore_api_monitoring.c 542 test_namestore_api_monitoring.c
514test_namestore_api_monitoring_postgres_LDADD = \ 543test_namestore_api_monitoring_postgres_LDADD = \
515 $(top_builddir)/src/testing/libgnunettesting.la \ 544 $(top_builddir)/src/testing/libgnunettesting.la \
545 $(top_builddir)/src/identity/libgnunetidentity.la \
516 libgnunetnamestore.la \ 546 libgnunetnamestore.la \
517 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 547 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
518 $(top_builddir)/src/util/libgnunetutil.la 548 $(top_builddir)/src/util/libgnunetutil.la
@@ -521,6 +551,7 @@ test_namestore_api_monitoring_existing_flat_SOURCES = \
521 test_namestore_api_monitoring_existing.c 551 test_namestore_api_monitoring_existing.c
522test_namestore_api_monitoring_existing_flat_LDADD = \ 552test_namestore_api_monitoring_existing_flat_LDADD = \
523 $(top_builddir)/src/testing/libgnunettesting.la \ 553 $(top_builddir)/src/testing/libgnunettesting.la \
554 $(top_builddir)/src/identity/libgnunetidentity.la \
524 libgnunetnamestore.la \ 555 libgnunetnamestore.la \
525 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 556 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
526 $(top_builddir)/src/util/libgnunetutil.la 557 $(top_builddir)/src/util/libgnunetutil.la
@@ -529,6 +560,7 @@ test_namestore_api_monitoring_existing_sqlite_SOURCES = \
529 test_namestore_api_monitoring_existing.c 560 test_namestore_api_monitoring_existing.c
530test_namestore_api_monitoring_existing_sqlite_LDADD = \ 561test_namestore_api_monitoring_existing_sqlite_LDADD = \
531 $(top_builddir)/src/testing/libgnunettesting.la \ 562 $(top_builddir)/src/testing/libgnunettesting.la \
563 $(top_builddir)/src/identity/libgnunetidentity.la \
532 libgnunetnamestore.la \ 564 libgnunetnamestore.la \
533 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 565 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
534 $(top_builddir)/src/util/libgnunetutil.la 566 $(top_builddir)/src/util/libgnunetutil.la
@@ -539,12 +571,14 @@ test_namestore_api_monitoring_existing_postgres_LDADD = \
539 $(top_builddir)/src/testing/libgnunettesting.la \ 571 $(top_builddir)/src/testing/libgnunettesting.la \
540 libgnunetnamestore.la \ 572 libgnunetnamestore.la \
541 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 573 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
574 $(top_builddir)/src/identity/libgnunetidentity.la \
542 $(top_builddir)/src/util/libgnunetutil.la 575 $(top_builddir)/src/util/libgnunetutil.la
543 576
544test_namestore_api_zone_iteration_flat_SOURCES = \ 577test_namestore_api_zone_iteration_flat_SOURCES = \
545 test_namestore_api_zone_iteration.c 578 test_namestore_api_zone_iteration.c
546test_namestore_api_zone_iteration_flat_LDADD = \ 579test_namestore_api_zone_iteration_flat_LDADD = \
547 $(top_builddir)/src/testing/libgnunettesting.la \ 580 $(top_builddir)/src/testing/libgnunettesting.la \
581 $(top_builddir)/src/identity/libgnunetidentity.la \
548 $(top_builddir)/src/util/libgnunetutil.la \ 582 $(top_builddir)/src/util/libgnunetutil.la \
549 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 583 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
550 libgnunetnamestore.la 584 libgnunetnamestore.la
@@ -553,6 +587,7 @@ test_namestore_api_zone_iteration_sqlite_SOURCES = \
553 test_namestore_api_zone_iteration.c 587 test_namestore_api_zone_iteration.c
554test_namestore_api_zone_iteration_sqlite_LDADD = \ 588test_namestore_api_zone_iteration_sqlite_LDADD = \
555 $(top_builddir)/src/testing/libgnunettesting.la \ 589 $(top_builddir)/src/testing/libgnunettesting.la \
590 $(top_builddir)/src/identity/libgnunetidentity.la \
556 $(top_builddir)/src/util/libgnunetutil.la \ 591 $(top_builddir)/src/util/libgnunetutil.la \
557 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 592 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
558 libgnunetnamestore.la 593 libgnunetnamestore.la
@@ -561,6 +596,7 @@ test_namestore_api_zone_iteration_postgres_SOURCES = \
561 test_namestore_api_zone_iteration.c 596 test_namestore_api_zone_iteration.c
562test_namestore_api_zone_iteration_postgres_LDADD = \ 597test_namestore_api_zone_iteration_postgres_LDADD = \
563 $(top_builddir)/src/testing/libgnunettesting.la \ 598 $(top_builddir)/src/testing/libgnunettesting.la \
599 $(top_builddir)/src/identity/libgnunetidentity.la \
564 $(top_builddir)/src/util/libgnunetutil.la \ 600 $(top_builddir)/src/util/libgnunetutil.la \
565 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 601 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
566 libgnunetnamestore.la 602 libgnunetnamestore.la
@@ -570,6 +606,7 @@ perf_namestore_api_zone_iteration_postgres_SOURCES = \
570perf_namestore_api_zone_iteration_postgres_LDADD = \ 606perf_namestore_api_zone_iteration_postgres_LDADD = \
571 $(top_builddir)/src/testing/libgnunettesting.la \ 607 $(top_builddir)/src/testing/libgnunettesting.la \
572 $(top_builddir)/src/util/libgnunetutil.la \ 608 $(top_builddir)/src/util/libgnunetutil.la \
609 $(top_builddir)/src/identity/libgnunetidentity.la \
573 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 610 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
574 libgnunetnamestore.la 611 libgnunetnamestore.la
575 612
@@ -577,6 +614,7 @@ perf_namestore_api_zone_iteration_sqlite_SOURCES = \
577 perf_namestore_api_zone_iteration.c 614 perf_namestore_api_zone_iteration.c
578perf_namestore_api_zone_iteration_sqlite_LDADD = \ 615perf_namestore_api_zone_iteration_sqlite_LDADD = \
579 $(top_builddir)/src/testing/libgnunettesting.la \ 616 $(top_builddir)/src/testing/libgnunettesting.la \
617 $(top_builddir)/src/identity/libgnunetidentity.la \
580 $(top_builddir)/src/util/libgnunetutil.la \ 618 $(top_builddir)/src/util/libgnunetutil.la \
581 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 619 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
582 libgnunetnamestore.la 620 libgnunetnamestore.la
@@ -585,6 +623,7 @@ perf_namestore_api_zone_iteration_flat_SOURCES = \
585 perf_namestore_api_zone_iteration.c 623 perf_namestore_api_zone_iteration.c
586perf_namestore_api_zone_iteration_flat_LDADD = \ 624perf_namestore_api_zone_iteration_flat_LDADD = \
587 $(top_builddir)/src/testing/libgnunettesting.la \ 625 $(top_builddir)/src/testing/libgnunettesting.la \
626 $(top_builddir)/src/identity/libgnunetidentity.la \
588 $(top_builddir)/src/util/libgnunetutil.la \ 627 $(top_builddir)/src/util/libgnunetutil.la \
589 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 628 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
590 libgnunetnamestore.la 629 libgnunetnamestore.la
@@ -594,6 +633,7 @@ test_namestore_api_zone_iteration_nick_flat_SOURCES = \
594test_namestore_api_zone_iteration_nick_flat_LDADD = \ 633test_namestore_api_zone_iteration_nick_flat_LDADD = \
595 $(top_builddir)/src/testing/libgnunettesting.la \ 634 $(top_builddir)/src/testing/libgnunettesting.la \
596 $(top_builddir)/src/util/libgnunetutil.la \ 635 $(top_builddir)/src/util/libgnunetutil.la \
636 $(top_builddir)/src/identity/libgnunetidentity.la \
597 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 637 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
598 libgnunetnamestore.la 638 libgnunetnamestore.la
599 639
@@ -601,6 +641,7 @@ test_namestore_api_zone_iteration_nick_sqlite_SOURCES = \
601 test_namestore_api_zone_iteration_nick.c 641 test_namestore_api_zone_iteration_nick.c
602test_namestore_api_zone_iteration_nick_sqlite_LDADD = \ 642test_namestore_api_zone_iteration_nick_sqlite_LDADD = \
603 $(top_builddir)/src/testing/libgnunettesting.la \ 643 $(top_builddir)/src/testing/libgnunettesting.la \
644 $(top_builddir)/src/identity/libgnunetidentity.la \
604 $(top_builddir)/src/util/libgnunetutil.la \ 645 $(top_builddir)/src/util/libgnunetutil.la \
605 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 646 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
606 libgnunetnamestore.la 647 libgnunetnamestore.la
@@ -609,6 +650,7 @@ test_namestore_api_zone_iteration_nick_postgres_SOURCES = \
609 test_namestore_api_zone_iteration_nick.c 650 test_namestore_api_zone_iteration_nick.c
610test_namestore_api_zone_iteration_nick_postgres_LDADD = \ 651test_namestore_api_zone_iteration_nick_postgres_LDADD = \
611 $(top_builddir)/src/testing/libgnunettesting.la \ 652 $(top_builddir)/src/testing/libgnunettesting.la \
653 $(top_builddir)/src/identity/libgnunetidentity.la \
612 $(top_builddir)/src/util/libgnunetutil.la \ 654 $(top_builddir)/src/util/libgnunetutil.la \
613 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 655 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
614 libgnunetnamestore.la 656 libgnunetnamestore.la
@@ -617,6 +659,7 @@ test_namestore_api_zone_iteration_specific_zone_flat_SOURCES = \
617 test_namestore_api_zone_iteration_specific_zone.c 659 test_namestore_api_zone_iteration_specific_zone.c
618test_namestore_api_zone_iteration_specific_zone_flat_LDADD = \ 660test_namestore_api_zone_iteration_specific_zone_flat_LDADD = \
619 $(top_builddir)/src/testing/libgnunettesting.la \ 661 $(top_builddir)/src/testing/libgnunettesting.la \
662 $(top_builddir)/src/identity/libgnunetidentity.la \
620 $(top_builddir)/src/util/libgnunetutil.la \ 663 $(top_builddir)/src/util/libgnunetutil.la \
621 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 664 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
622 libgnunetnamestore.la 665 libgnunetnamestore.la
@@ -625,6 +668,7 @@ test_namestore_api_zone_iteration_specific_zone_sqlite_SOURCES = \
625 test_namestore_api_zone_iteration_specific_zone.c 668 test_namestore_api_zone_iteration_specific_zone.c
626test_namestore_api_zone_iteration_specific_zone_sqlite_LDADD = \ 669test_namestore_api_zone_iteration_specific_zone_sqlite_LDADD = \
627 $(top_builddir)/src/testing/libgnunettesting.la \ 670 $(top_builddir)/src/testing/libgnunettesting.la \
671 $(top_builddir)/src/identity/libgnunetidentity.la \
628 $(top_builddir)/src/util/libgnunetutil.la \ 672 $(top_builddir)/src/util/libgnunetutil.la \
629 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 673 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
630 libgnunetnamestore.la 674 libgnunetnamestore.la
@@ -633,6 +677,7 @@ test_namestore_api_zone_iteration_specific_zone_postgres_SOURCES = \
633 test_namestore_api_zone_iteration_specific_zone.c 677 test_namestore_api_zone_iteration_specific_zone.c
634test_namestore_api_zone_iteration_specific_zone_postgres_LDADD = \ 678test_namestore_api_zone_iteration_specific_zone_postgres_LDADD = \
635 $(top_builddir)/src/testing/libgnunettesting.la \ 679 $(top_builddir)/src/testing/libgnunettesting.la \
680 $(top_builddir)/src/identity/libgnunetidentity.la \
636 $(top_builddir)/src/util/libgnunetutil.la \ 681 $(top_builddir)/src/util/libgnunetutil.la \
637 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 682 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
638 libgnunetnamestore.la 683 libgnunetnamestore.la
@@ -641,6 +686,7 @@ test_namestore_api_zone_iteration_stop_flat_SOURCES = \
641 test_namestore_api_zone_iteration_stop.c 686 test_namestore_api_zone_iteration_stop.c
642test_namestore_api_zone_iteration_stop_flat_LDADD = \ 687test_namestore_api_zone_iteration_stop_flat_LDADD = \
643 $(top_builddir)/src/testing/libgnunettesting.la \ 688 $(top_builddir)/src/testing/libgnunettesting.la \
689 $(top_builddir)/src/identity/libgnunetidentity.la \
644 $(top_builddir)/src/util/libgnunetutil.la \ 690 $(top_builddir)/src/util/libgnunetutil.la \
645 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 691 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
646 libgnunetnamestore.la 692 libgnunetnamestore.la
@@ -649,6 +695,7 @@ test_namestore_api_zone_iteration_stop_sqlite_SOURCES = \
649 test_namestore_api_zone_iteration_stop.c 695 test_namestore_api_zone_iteration_stop.c
650test_namestore_api_zone_iteration_stop_sqlite_LDADD = \ 696test_namestore_api_zone_iteration_stop_sqlite_LDADD = \
651 $(top_builddir)/src/testing/libgnunettesting.la \ 697 $(top_builddir)/src/testing/libgnunettesting.la \
698 $(top_builddir)/src/identity/libgnunetidentity.la \
652 $(top_builddir)/src/util/libgnunetutil.la \ 699 $(top_builddir)/src/util/libgnunetutil.la \
653 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 700 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
654 libgnunetnamestore.la 701 libgnunetnamestore.la
@@ -657,6 +704,7 @@ test_namestore_api_zone_iteration_stop_postgres_SOURCES = \
657 test_namestore_api_zone_iteration_stop.c 704 test_namestore_api_zone_iteration_stop.c
658test_namestore_api_zone_iteration_stop_postgres_LDADD = \ 705test_namestore_api_zone_iteration_stop_postgres_LDADD = \
659 $(top_builddir)/src/testing/libgnunettesting.la \ 706 $(top_builddir)/src/testing/libgnunettesting.la \
707 $(top_builddir)/src/identity/libgnunetidentity.la \
660 $(top_builddir)/src/util/libgnunetutil.la \ 708 $(top_builddir)/src/util/libgnunetutil.la \
661 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 709 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
662 libgnunetnamestore.la 710 libgnunetnamestore.la
@@ -664,20 +712,23 @@ test_namestore_api_zone_iteration_stop_postgres_LDADD = \
664test_plugin_namestore_flat_SOURCES = \ 712test_plugin_namestore_flat_SOURCES = \
665 test_plugin_namestore.c 713 test_plugin_namestore.c
666test_plugin_namestore_flat_LDADD = \ 714test_plugin_namestore_flat_LDADD = \
667 $(top_builddir)/src/testing/libgnunettesting.la \ 715 $(top_builddir)/src/testing/libgnunettesting.la \
668 $(top_builddir)/src/util/libgnunetutil.la 716 $(top_builddir)/src/identity/libgnunetidentity.la \
717 $(top_builddir)/src/util/libgnunetutil.la
669 718
670test_plugin_namestore_sqlite_SOURCES = \ 719test_plugin_namestore_sqlite_SOURCES = \
671 test_plugin_namestore.c 720 test_plugin_namestore.c
672test_plugin_namestore_sqlite_LDADD = \ 721test_plugin_namestore_sqlite_LDADD = \
673 $(top_builddir)/src/testing/libgnunettesting.la \ 722 $(top_builddir)/src/testing/libgnunettesting.la \
674 $(top_builddir)/src/util/libgnunetutil.la 723 $(top_builddir)/src/identity/libgnunetidentity.la \
724 $(top_builddir)/src/util/libgnunetutil.la
675 725
676test_plugin_namestore_postgres_SOURCES = \ 726test_plugin_namestore_postgres_SOURCES = \
677 test_plugin_namestore.c 727 test_plugin_namestore.c
678test_plugin_namestore_postgres_LDADD = \ 728test_plugin_namestore_postgres_LDADD = \
679 $(top_builddir)/src/testing/libgnunettesting.la \ 729 $(top_builddir)/src/identity/libgnunetidentity.la \
680 $(top_builddir)/src/util/libgnunetutil.la 730 $(top_builddir)/src/testing/libgnunettesting.la \
731 $(top_builddir)/src/util/libgnunetutil.la
681 732
682check_SCRIPTS = \ 733check_SCRIPTS = \
683 test_namestore_put.sh \ 734 test_namestore_put.sh \
diff --git a/src/reclaim/test_reclaim_consume.sh b/src/reclaim/test_reclaim_consume.sh
index 55f6ff22c..9186d3cb1 100755
--- a/src/reclaim/test_reclaim_consume.sh
+++ b/src/reclaim/test_reclaim_consume.sh
@@ -6,7 +6,7 @@ if [ -z $LOCATION ]
6then 6then
7 LOCATION="gnunet-config" 7 LOCATION="gnunet-config"
8fi 8fi
9$LOCATION --version 1> /dev/null 9$LOCATION --version 1>/dev/null
10if test $? != 0 10if test $? != 0
11then 11then
12 echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX" 12 echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX"
@@ -20,7 +20,7 @@ rm -rf `gnunet-config -c test_reclaim.conf -s PATHS -o GNUNET_HOME -f`
20# (3) PKEY3.user -> PKEY4 20# (3) PKEY3.user -> PKEY4
21 21
22 22
23which timeout &> /dev/null && DO_TIMEOUT="timeout 30" 23which timeout >/dev/null 2>&1 && DO_TIMEOUT="timeout 30"
24 24
25TEST_ATTR="test" 25TEST_ATTR="test"
26gnunet-arm -s -c test_reclaim.conf 26gnunet-arm -s -c test_reclaim.conf
@@ -32,7 +32,7 @@ TEST_KEY=$(gnunet-identity -d -e testego -q -c test_reclaim.conf)
32gnunet-reclaim -e testego -a email -V john@doe.gnu -c test_reclaim.conf 32gnunet-reclaim -e testego -a email -V john@doe.gnu -c test_reclaim.conf
33gnunet-reclaim -e testego -a name -V John -c test_reclaim.conf 33gnunet-reclaim -e testego -a name -V John -c test_reclaim.conf
34TICKET=$(gnunet-reclaim -e testego -i "email,name" -r $SUBJECT_KEY -c test_reclaim.conf | awk '{print $1}') 34TICKET=$(gnunet-reclaim -e testego -i "email,name" -r $SUBJECT_KEY -c test_reclaim.conf | awk '{print $1}')
35gnunet-reclaim -e rpego -C $TICKET -c test_reclaim.conf > /dev/null 2>&1 35gnunet-reclaim -e rpego -C $TICKET -c test_reclaim.conf >/dev/null 2>&1
36 36
37if test $? != 0 37if test $? != 0
38then 38then
diff --git a/src/reclaim/test_reclaim_issue.sh b/src/reclaim/test_reclaim_issue.sh
index 7ab8a6980..cfddc9407 100755
--- a/src/reclaim/test_reclaim_issue.sh
+++ b/src/reclaim/test_reclaim_issue.sh
@@ -20,7 +20,7 @@ rm -rf `gnunet-config -c test_reclaim.conf -s PATHS -o GNUNET_HOME -f`
20# (3) PKEY3.user -> PKEY4 20# (3) PKEY3.user -> PKEY4
21 21
22 22
23which timeout &> /dev/null && DO_TIMEOUT="timeout 30" 23which timeout >/dev/null 2>&1 && DO_TIMEOUT="timeout 30"
24 24
25TEST_ATTR="test" 25TEST_ATTR="test"
26gnunet-arm -s -c test_reclaim.conf 26gnunet-arm -s -c test_reclaim.conf
diff --git a/src/reclaim/test_reclaim_revoke.sh b/src/reclaim/test_reclaim_revoke.sh
index ffbc7ef2b..da091a1ee 100755
--- a/src/reclaim/test_reclaim_revoke.sh
+++ b/src/reclaim/test_reclaim_revoke.sh
@@ -20,10 +20,10 @@ rm -rf `gnunet-config -c test_reclaim.conf -s PATHS -o GNUNET_HOME -f`
20# (3) PKEY3.user -> PKEY4 20# (3) PKEY3.user -> PKEY4
21 21
22 22
23which timeout &> /dev/null && DO_TIMEOUT="timeout 30" 23which timeout >/dev/null 2&>1 && DO_TIMEOUT="timeout 30"
24 24
25TEST_ATTR="test" 25TEST_ATTR="test"
26gnunet-arm -s -c test_reclaim.conf 2&>1 > /dev/null 26gnunet-arm -s -c test_reclaim.conf >/dev/null 2&>1
27gnunet-identity -C alice -c test_reclaim.conf 27gnunet-identity -C alice -c test_reclaim.conf
28gnunet-identity -C bob -c test_reclaim.conf 28gnunet-identity -C bob -c test_reclaim.conf
29gnunet-identity -C eve -c test_reclaim.conf 29gnunet-identity -C eve -c test_reclaim.conf
@@ -43,7 +43,7 @@ sleep 16
43echo "Consuming $TICKET" 43echo "Consuming $TICKET"
44 44
45gnunet-reclaim -e eve -C $TICKET_EVE -c test_reclaim.conf 45gnunet-reclaim -e eve -C $TICKET_EVE -c test_reclaim.conf
46if test $? == 0 46if test $? = 0
47then 47then
48 echo "Eve can still resolve attributes..." 48 echo "Eve can still resolve attributes..."
49 gnunet-arm -e -c test_reclaim.conf 49 gnunet-arm -e -c test_reclaim.conf
@@ -51,10 +51,10 @@ then
51fi 51fi
52 52
53gnunet-arm -e -c test_reclaim.conf 53gnunet-arm -e -c test_reclaim.conf
54gnunet-arm -s -c test_reclaim.conf 2&>1 > /dev/null 54gnunet-arm -s -c test_reclaim.conf >/dev/null 2&>1
55 55
56gnunet-reclaim -e bob -C $TICKET_BOB -c test_reclaim.conf 56gnunet-reclaim -e bob -C $TICKET_BOB -c test_reclaim.conf
57#gnunet-reclaim -e bob -C $TICKET_BOB -c test_reclaim.conf 2&>1 >/dev/null 57#gnunet-reclaim -e bob -C $TICKET_BOB -c test_reclaim.conf >/dev/null 2&>1
58if test $? != 0 58if test $? != 0
59then 59then
60 echo "Bob cannot resolve attributes..." 60 echo "Bob cannot resolve attributes..."
diff --git a/src/scalarproduct/test_scalarproduct.sh b/src/scalarproduct/test_scalarproduct.sh
index c0401beb7..ed91cd5c4 100755
--- a/src/scalarproduct/test_scalarproduct.sh
+++ b/src/scalarproduct/test_scalarproduct.sh
@@ -25,7 +25,7 @@ echo "Waiting for peers to start..."
25sleep 5 25sleep 5
26echo "Running test..." 26echo "Running test..."
27 27
28which timeout &> /dev/null && DO_TIMEOUT="timeout 15" 28which timeout >/dev/null 2>&1 && DO_TIMEOUT="timeout 15"
29 29
30# get bob's peer ID, necessary for alice 30# get bob's peer ID, necessary for alice
31PEERIDBOB=`${DO_TIMEOUT} gnunet-peerinfo -qs $CFGBOB` 31PEERIDBOB=`${DO_TIMEOUT} gnunet-peerinfo -qs $CFGBOB`
@@ -38,7 +38,7 @@ RESULT=`${DO_TIMEOUT} gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB`
38# terminate the testbed 38# terminate the testbed
39kill $PID 39kill $PID
40 40
41if [ "$RESULT" == "$EXPECTED" ] 41if [ "$RESULT" = "$EXPECTED" ]
42then 42then
43 echo "OK" 43 echo "OK"
44 exit 0 44 exit 0
diff --git a/src/scalarproduct/test_scalarproduct_negative.sh b/src/scalarproduct/test_scalarproduct_negative.sh
index cbeb1b9fd..b08e4527f 100755
--- a/src/scalarproduct/test_scalarproduct_negative.sh
+++ b/src/scalarproduct/test_scalarproduct_negative.sh
@@ -11,7 +11,7 @@ PREFIX=/tmp/test-scalarproduct`date +%H%M%S`
11CFGALICE="-c $PREFIX/0/config" 11CFGALICE="-c $PREFIX/0/config"
12CFGBOB="-c $PREFIX/1/config" 12CFGBOB="-c $PREFIX/1/config"
13 13
14which timeout &> /dev/null && DO_TIMEOUT="timeout 15" 14which timeout >/dev/null 2>&1 && DO_TIMEOUT="timeout 15"
15 15
16# launch two peers in line topology non-interactively 16# launch two peers in line topology non-interactively
17# 17#
@@ -36,7 +36,7 @@ RESULT=`${DO_TIMEOUT} gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB`
36kill $PID 36kill $PID
37 37
38EXPECTED="-0CCC" 38EXPECTED="-0CCC"
39if [ "$RESULT" == "$EXPECTED" ] 39if [ "$RESULT" = "$EXPECTED" ]
40then 40then
41 echo "OK" 41 echo "OK"
42 exit 0 42 exit 0
diff --git a/src/scalarproduct/test_scalarproduct_negativezero.sh b/src/scalarproduct/test_scalarproduct_negativezero.sh
index 1ab7157af..6f80b2ea2 100755
--- a/src/scalarproduct/test_scalarproduct_negativezero.sh
+++ b/src/scalarproduct/test_scalarproduct_negativezero.sh
@@ -22,7 +22,7 @@ PID=$!
22# sleep 1 is too short on most systems, 2 works on most, 5 seems to be safe 22# sleep 1 is too short on most systems, 2 works on most, 5 seems to be safe
23sleep 5 23sleep 5
24 24
25which timeout &> /dev/null && DO_TIMEOUT="timeout 15" 25which timeout >/dev/null 2>&1 && DO_TIMEOUT="timeout 15"
26 26
27# get bob's peer ID, necessary for alice 27# get bob's peer ID, necessary for alice
28PEERIDBOB=`${DO_TIMEOUT} gnunet-peerinfo -qs $CFGBOB` 28PEERIDBOB=`${DO_TIMEOUT} gnunet-peerinfo -qs $CFGBOB`
@@ -36,7 +36,7 @@ RESULT=`${DO_TIMEOUT} gnunet-scalarproduct $CFGALICE $INPUTALICE -p $PEERIDBOB`
36kill $PID 36kill $PID
37 37
38EXPECTED="00" 38EXPECTED="00"
39if [ "$RESULT" == "$EXPECTED" ] 39if [ "$RESULT" = "$EXPECTED" ]
40then 40then
41 echo "OK" 41 echo "OK"
42 exit 0 42 exit 0
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
index 0f9d40e13..a2fc3811e 100644
--- a/src/transport/Makefile.am
+++ b/src/transport/Makefile.am
@@ -131,8 +131,9 @@ noinst_PROGRAMS = \
131 $(WLAN_BIN_RECEIVER) 131 $(WLAN_BIN_RECEIVER)
132 132
133if HAVE_TESTING 133if HAVE_TESTING
134TESTING_LIBS = libgnunettransporttesting.la \ 134TESTING_LIBS = \
135 libgnunettransporttesting2.la 135 libgnunettransporttesting.la \
136 libgnunettransporttesting2.la
136endif 137endif
137 138
138lib_LTLIBRARIES = \ 139lib_LTLIBRARIES = \
@@ -174,6 +175,7 @@ libgnunettransporttesting2_la_LIBADD = \
174 libgnunettransport.la \ 175 libgnunettransport.la \
175 libgnunettransportapplication.la \ 176 libgnunettransportapplication.la \
176 libgnunettransportcore.la \ 177 libgnunettransportcore.la \
178 $(top_builddir)/src/arm/libgnunetarm.la \
177 $(top_builddir)/src/testing/libgnunettesting.la \ 179 $(top_builddir)/src/testing/libgnunettesting.la \
178 $(top_builddir)/src/ats/libgnunetats.la \ 180 $(top_builddir)/src/ats/libgnunetats.la \
179 $(top_builddir)/src/hello/libgnunethello.la \ 181 $(top_builddir)/src/hello/libgnunethello.la \