gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r32027 - in gnunet: contrib src/arm src/ats src/ats-tests s


From: gnunet
Subject: [GNUnet-SVN] r32027 - in gnunet: contrib src/arm src/ats src/ats-tests src/consensus src/conversation src/core src/datacache src/datastore src/dht src/dns src/dv src/env src/experimentation src/fragmentation src/fs src/gns src/gnsrecord src/hello src/hostlist src/identity src/integration-tests src/mesh src/multicast src/namecache src/namestore src/nat src/nse src/peerinfo src/peerinfo-tool src/psyc src/psycstore src/pt src/regex src/revocation src/scalarproduct src/secretsharing src/set src/statistics src/template src/testbed src/testing src/topology src/transport src/tun src/util
Date: Fri, 24 Jan 2014 18:25:00 +0100

Author: harsha
Date: 2014-01-24 18:25:00 +0100 (Fri, 24 Jan 2014)
New Revision: 32027

Modified:
   gnunet/contrib/Makefile.am
   gnunet/src/arm/Makefile.am
   gnunet/src/ats-tests/Makefile.am
   gnunet/src/ats/Makefile.am
   gnunet/src/consensus/Makefile.am
   gnunet/src/conversation/Makefile.am
   gnunet/src/core/Makefile.am
   gnunet/src/datacache/Makefile.am
   gnunet/src/datastore/Makefile.am
   gnunet/src/dht/Makefile.am
   gnunet/src/dns/Makefile.am
   gnunet/src/dv/Makefile.am
   gnunet/src/env/Makefile.am
   gnunet/src/experimentation/Makefile.am
   gnunet/src/fragmentation/Makefile.am
   gnunet/src/fs/Makefile.am
   gnunet/src/gns/Makefile.am
   gnunet/src/gnsrecord/Makefile.am
   gnunet/src/hello/Makefile.am
   gnunet/src/hostlist/Makefile.am
   gnunet/src/identity/Makefile.am
   gnunet/src/integration-tests/Makefile.am
   gnunet/src/mesh/Makefile.am
   gnunet/src/multicast/Makefile.am
   gnunet/src/namecache/Makefile.am
   gnunet/src/namestore/Makefile.am
   gnunet/src/nat/Makefile.am
   gnunet/src/nse/Makefile.am
   gnunet/src/peerinfo-tool/Makefile.am
   gnunet/src/peerinfo/Makefile.am
   gnunet/src/psyc/Makefile.am
   gnunet/src/psycstore/Makefile.am
   gnunet/src/pt/Makefile.am
   gnunet/src/regex/Makefile.am
   gnunet/src/revocation/Makefile.am
   gnunet/src/scalarproduct/Makefile.am
   gnunet/src/secretsharing/Makefile.am
   gnunet/src/set/Makefile.am
   gnunet/src/statistics/Makefile.am
   gnunet/src/template/Makefile.am
   gnunet/src/testbed/Makefile.am
   gnunet/src/testing/Makefile.am
   gnunet/src/topology/Makefile.am
   gnunet/src/transport/Makefile.am
   gnunet/src/tun/Makefile.am
   gnunet/src/util/Makefile.am
Log:
fix #3275 with solution from https://gnunet.org/bugs/view.php?id=3275#c8029

sed -i 's#^\(\s*\)TESTS#\1TESTS_ENVIRONMENT=export address@hidden@;export 
address@hidden@/bin:$$PATH;\n&#'



Modified: gnunet/contrib/Makefile.am
===================================================================
--- gnunet/contrib/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/contrib/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -83,6 +83,7 @@
  test_gnunet_prefix
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/arm/Makefile.am
===================================================================
--- gnunet/src/arm/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/arm/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -72,6 +72,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)  $(check_SCRIPTS)
 endif
 

Modified: gnunet/src/ats/Makefile.am
===================================================================
--- gnunet/src/ats/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/ats/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -145,6 +145,7 @@
  $(TESTING_TESTS)
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/ats-tests/Makefile.am
===================================================================
--- gnunet/src/ats-tests/Makefile.am    2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/ats-tests/Makefile.am    2014-01-24 17:25:00 UTC (rev 32027)
@@ -45,6 +45,7 @@
  $(TESTING_TESTS)
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/consensus/Makefile.am
===================================================================
--- gnunet/src/consensus/Makefile.am    2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/consensus/Makefile.am    2014-01-24 17:25:00 UTC (rev 32027)
@@ -77,6 +77,7 @@
  test_consensus_api
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/conversation/Makefile.am
===================================================================
--- gnunet/src/conversation/Makefile.am 2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/conversation/Makefile.am 2014-01-24 17:25:00 UTC (rev 32027)
@@ -94,6 +94,7 @@
   $(AUDIO_HELPER_RECD) \
   $(AUDIO_HELPER_PLAY)
 
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(AUDIO_TESTS)
 
 if BUILD_PULSE_HELPERS

Modified: gnunet/src/core/Makefile.am
===================================================================
--- gnunet/src/core/Makefile.am 2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/core/Makefile.am 2014-01-24 17:25:00 UTC (rev 32027)
@@ -73,6 +73,7 @@
  $(TESTING_TESTS)
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/datacache/Makefile.am
===================================================================
--- gnunet/src/datacache/Makefile.am    2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/datacache/Makefile.am    2014-01-24 17:25:00 UTC (rev 32027)
@@ -122,6 +122,7 @@
  $(POSTGRES_TESTS) 
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/datastore/Makefile.am
===================================================================
--- gnunet/src/datastore/Makefile.am    2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/datastore/Makefile.am    2014-01-24 17:25:00 UTC (rev 32027)
@@ -170,6 +170,7 @@
   $(POSTGRES_TESTS)
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/dht/Makefile.am
===================================================================
--- gnunet/src/dht/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/dht/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -158,6 +158,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = test_dht_api $(check_SCRIPTS) \
  test_dht_twopeer \
  test_dht_line \

Modified: gnunet/src/dns/Makefile.am
===================================================================
--- gnunet/src/dns/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/dns/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -115,6 +115,7 @@
 
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)  $(check_SCRIPTS)
 endif
 

Modified: gnunet/src/dv/Makefile.am
===================================================================
--- gnunet/src/dv/Makefile.am   2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/dv/Makefile.am   2014-01-24 17:25:00 UTC (rev 32027)
@@ -76,6 +76,7 @@
 endif
 
 if ENABLE_TEST_RUN
+ TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
  TESTS = $(check_PROGRAMS) 
 endif
 

Modified: gnunet/src/env/Makefile.am
===================================================================
--- gnunet/src/env/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/env/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -32,6 +32,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/experimentation/Makefile.am
===================================================================
--- gnunet/src/experimentation/Makefile.am      2014-01-24 14:53:14 UTC (rev 
32026)
+++ gnunet/src/experimentation/Makefile.am      2014-01-24 17:25:00 UTC (rev 
32027)
@@ -25,6 +25,7 @@
  $(TEXT_EXP_CLIQUE)
 
 if ENABLE_TEST_RUN
+ TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
  TESTS = \
  $(TEXT_EXP_CLIQUE)
 endif

Modified: gnunet/src/fragmentation/Makefile.am
===================================================================
--- gnunet/src/fragmentation/Makefile.am        2014-01-24 14:53:14 UTC (rev 
32026)
+++ gnunet/src/fragmentation/Makefile.am        2014-01-24 17:25:00 UTC (rev 
32027)
@@ -25,6 +25,7 @@
  test_fragmentation
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/fs/Makefile.am
===================================================================
--- gnunet/src/fs/Makefile.am   2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/fs/Makefile.am   2014-01-24 17:25:00 UTC (rev 32027)
@@ -273,12 +273,15 @@
 endif
 
 if ENABLE_MONKEY
- TESTS_ENVIRONMENT = @MONKEYPREFIX@
+ MONKEY = @MONKEYPREFIX@
  AM_LDFLAGS = -no-install
 endif
 
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;\
+ export address@hidden@/bin:$$PATH;\
+ $(MONKEY)
 TESTS = \
  test_fs_directory \
  test_fs_download \

Modified: gnunet/src/gns/Makefile.am
===================================================================
--- gnunet/src/gns/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/gns/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -277,6 +277,7 @@
 
 if ENABLE_TEST_RUN
 if HAVE_SQLITE
+ TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
  TESTS = $(check_SCRIPTS)
 endif
 endif

Modified: gnunet/src/gnsrecord/Makefile.am
===================================================================
--- gnunet/src/gnsrecord/Makefile.am    2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/gnsrecord/Makefile.am    2014-01-24 17:25:00 UTC (rev 32027)
@@ -21,6 +21,7 @@
  test_gnsrecord_block_expiration
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = \
   $(check_PROGRAMS) \
   $(check_SCRIPTS)

Modified: gnunet/src/hello/Makefile.am
===================================================================
--- gnunet/src/hello/Makefile.am        2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/hello/Makefile.am        2014-01-24 17:25:00 UTC (rev 32027)
@@ -28,6 +28,7 @@
  test_friend_hello
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/hostlist/Makefile.am
===================================================================
--- gnunet/src/hostlist/Makefile.am     2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/hostlist/Makefile.am     2014-01-24 17:25:00 UTC (rev 32027)
@@ -48,6 +48,7 @@
 
 if HAVE_MHD
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = \
  test_gnunet_daemon_hostlist \
  test_gnunet_daemon_hostlist_reconnect \

Modified: gnunet/src/identity/Makefile.am
===================================================================
--- gnunet/src/identity/Makefile.am     2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/identity/Makefile.am     2014-01-24 17:25:00 UTC (rev 32027)
@@ -68,6 +68,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS) 
 endif
 

Modified: gnunet/src/integration-tests/Makefile.am
===================================================================
--- gnunet/src/integration-tests/Makefile.am    2014-01-24 14:53:14 UTC (rev 
32026)
+++ gnunet/src/integration-tests/Makefile.am    2014-01-24 17:25:00 UTC (rev 
32027)
@@ -26,6 +26,7 @@
 
 if HAVE_MHD
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = \
  $(check_SCRIPTS)
 endif

Modified: gnunet/src/mesh/Makefile.am
===================================================================
--- gnunet/src/mesh/Makefile.am 2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/mesh/Makefile.am 2014-01-24 17:25:00 UTC (rev 32027)
@@ -184,6 +184,7 @@
 
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = \
  $(check_PROGRAMS)
 endif

Modified: gnunet/src/multicast/Makefile.am
===================================================================
--- gnunet/src/multicast/Makefile.am    2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/multicast/Makefile.am    2014-01-24 17:25:00 UTC (rev 32027)
@@ -51,6 +51,7 @@
  test_multicast_api
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/namecache/Makefile.am
===================================================================
--- gnunet/src/namecache/Makefile.am    2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/namecache/Makefile.am    2014-01-24 17:25:00 UTC (rev 32027)
@@ -47,6 +47,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = \
   $(check_PROGRAMS)
 endif

Modified: gnunet/src/namestore/Makefile.am
===================================================================
--- gnunet/src/namestore/Makefile.am    2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/namestore/Makefile.am    2014-01-24 17:25:00 UTC (rev 32027)
@@ -63,6 +63,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = \
   $(check_PROGRAMS) \
   $(check_SCRIPTS)

Modified: gnunet/src/nat/Makefile.am
===================================================================
--- gnunet/src/nat/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/nat/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -80,6 +80,7 @@
   test_nat_test
 
 if ENABLE_TEST_RUN
+ TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
  TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/nse/Makefile.am
===================================================================
--- gnunet/src/nse/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/nse/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -80,6 +80,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/peerinfo/Makefile.am
===================================================================
--- gnunet/src/peerinfo/Makefile.am     2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/peerinfo/Makefile.am     2014-01-24 17:25:00 UTC (rev 32027)
@@ -57,6 +57,7 @@
 
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/peerinfo-tool/Makefile.am
===================================================================
--- gnunet/src/peerinfo-tool/Makefile.am        2014-01-24 14:53:14 UTC (rev 
32026)
+++ gnunet/src/peerinfo-tool/Makefile.am        2014-01-24 17:25:00 UTC (rev 
32027)
@@ -29,6 +29,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_SCRIPTS)
 endif
 

Modified: gnunet/src/psyc/Makefile.am
===================================================================
--- gnunet/src/psyc/Makefile.am 2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/psyc/Makefile.am 2014-01-24 17:25:00 UTC (rev 32027)
@@ -59,6 +59,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/psycstore/Makefile.am
===================================================================
--- gnunet/src/psycstore/Makefile.am    2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/psycstore/Makefile.am    2014-01-24 17:25:00 UTC (rev 32027)
@@ -81,6 +81,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/pt/Makefile.am
===================================================================
--- gnunet/src/pt/Makefile.am   2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/pt/Makefile.am   2014-01-24 17:25:00 UTC (rev 32027)
@@ -57,6 +57,7 @@
 check_PROGRAMS = $(VPN_TEST)
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/regex/Makefile.am
===================================================================
--- gnunet/src/regex/Makefile.am        2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/regex/Makefile.am        2014-01-24 17:25:00 UTC (rev 32027)
@@ -170,6 +170,7 @@
   test_regex_api
 
 if ENABLE_TEST_RUN
+ TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
  TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/revocation/Makefile.am
===================================================================
--- gnunet/src/revocation/Makefile.am   2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/revocation/Makefile.am   2014-01-24 17:25:00 UTC (rev 32027)
@@ -74,6 +74,7 @@
        test_local_revocation.py
 
 if ENABLE_TEST_RUN
+ TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
  TESTS = \
  $(check_SCRIPTS) \
  $(check_PROGRAMS)

Modified: gnunet/src/scalarproduct/Makefile.am
===================================================================
--- gnunet/src/scalarproduct/Makefile.am        2014-01-24 14:53:14 UTC (rev 
32026)
+++ gnunet/src/scalarproduct/Makefile.am        2014-01-24 17:25:00 UTC (rev 
32027)
@@ -67,5 +67,6 @@
   test_scalarproduct_negativezero.sh
 
 if ENABLE_TEST_RUN
+  TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
   TESTS = $(check_SCRIPTS)
 endif

Modified: gnunet/src/secretsharing/Makefile.am
===================================================================
--- gnunet/src/secretsharing/Makefile.am        2014-01-24 14:53:14 UTC (rev 
32026)
+++ gnunet/src/secretsharing/Makefile.am        2014-01-24 17:25:00 UTC (rev 
32027)
@@ -63,6 +63,7 @@
  test_secretsharing_api
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/set/Makefile.am
===================================================================
--- gnunet/src/set/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/set/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -70,6 +70,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/statistics/Makefile.am
===================================================================
--- gnunet/src/statistics/Makefile.am   2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/statistics/Makefile.am   2014-01-24 17:25:00 UTC (rev 32027)
@@ -58,6 +58,7 @@
  test_statistics_api_watch_zero_value 
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS) $(check_SCRIPTS)
 endif
 

Modified: gnunet/src/template/Makefile.am
===================================================================
--- gnunet/src/template/Makefile.am     2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/template/Makefile.am     2014-01-24 17:25:00 UTC (rev 32027)
@@ -38,6 +38,7 @@
  test_template_api
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/testbed/Makefile.am
===================================================================
--- gnunet/src/testbed/Makefile.am      2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/testbed/Makefile.am      2014-01-24 17:25:00 UTC (rev 32027)
@@ -193,6 +193,7 @@
   $(underlay_testcases)
 
 if ENABLE_TEST_RUN
+ TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
  TESTS = \
   test_testbed_api \
   test_testbed_logger_api \

Modified: gnunet/src/testing/Makefile.am
===================================================================
--- gnunet/src/testing/Makefile.am      2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/testing/Makefile.am      2014-01-24 17:25:00 UTC (rev 32027)
@@ -57,6 +57,7 @@
  test_testing_sharedservices
 
 if ENABLE_TEST_RUN 
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = \
  test_testing_portreservation \
  test_testing_peerstartup \

Modified: gnunet/src/topology/Makefile.am
===================================================================
--- gnunet/src/topology/Makefile.am     2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/topology/Makefile.am     2014-01-24 17:25:00 UTC (rev 32027)
@@ -46,6 +46,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/transport/Makefile.am
===================================================================
--- gnunet/src/transport/Makefile.am    2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/transport/Makefile.am    2014-01-24 17:25:00 UTC (rev 32027)
@@ -440,6 +440,7 @@
 endif
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = \
  test_transport_testing_startstop \
  test_transport_testing_restart \

Modified: gnunet/src/tun/Makefile.am
===================================================================
--- gnunet/src/tun/Makefile.am  2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/tun/Makefile.am  2014-01-24 17:25:00 UTC (rev 32027)
@@ -27,6 +27,7 @@
  test_regex
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 

Modified: gnunet/src/util/Makefile.am
===================================================================
--- gnunet/src/util/Makefile.am 2014-01-24 14:53:14 UTC (rev 32026)
+++ gnunet/src/util/Makefile.am 2014-01-24 17:25:00 UTC (rev 32027)
@@ -279,6 +279,7 @@
  test_common_logging_runtime_loglevels
 
 if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export address@hidden@;export address@hidden@/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]