Makefile.am | Makefile.am | |||
---|---|---|---|---|
skipping to change at line 12 | skipping to change at line 12 | |||
if MINGW | if MINGW | |||
WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols | WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols | |||
endif | endif | |||
if USE_COVERAGE | if USE_COVERAGE | |||
AM_CFLAGS = --coverage -O0 | AM_CFLAGS = --coverage -O0 | |||
XLIB = -lgcov | XLIB = -lgcov | |||
endif | endif | |||
bin_PROGRAMS = | #bin_PROGRAMS = \ | |||
# connection_watchdog | ||||
check_PROGRAMS = | noinst_PROGRAMS = connection_watchdog | |||
noinst_SCRIPTS = \ | noinst_SCRIPTS = \ | |||
gnunet_testing.py \ | gnunet_testing.py \ | |||
gnunet_pyexpect.py | gnunet_pyexpect.py \ | |||
test_integration_connection_values_tcp.py \ | ||||
test_integration_connection_values_tcp_udp.py \ | ||||
test_integration_connection_values_tcp_udp_http.py | ||||
if HAVE_PYTHON_PEXPECT | if HAVE_PYTHON_PEXPECT | |||
check_SCRIPTS = \ | check_SCRIPTS = \ | |||
test_integration_bootstrap_and_connect.py \ | test_integration_bootstrap_and_connect.py \ | |||
test_integration_bootstrap_and_connect_and_disconnect.py \ | test_integration_bootstrap_and_connect_and_disconnect.py \ | |||
test_integration_bootstrap_and_connect_and_disconnect_nat.py \ | test_integration_bootstrap_and_connect_and_disconnect_nat.py \ | |||
test_integration_restart.py \ | test_integration_restart.py \ | |||
test_integration_clique.py \ | test_integration_clique.py \ | |||
test_integration_clique_nat.py | test_integration_clique_nat.py \ | |||
test_integration_connect_on_restart.py | ||||
endif | endif | |||
# test_integration_disconnect.py | # test_integration_disconnect.py | |||
check_PROGRAMS = \ | ||||
test_connection_stability | ||||
if ENABLE_TEST_RUN | if ENABLE_TEST_RUN | |||
TESTS = \ | TESTS = \ | |||
$(check_SCRIPTS) | $(check_SCRIPTS) | |||
endif | endif | |||
connection_watchdog_SOURCE = \ | ||||
connection_watchdog.c | ||||
connection_watchdog_LDADD = \ | ||||
$(top_builddir)/src/statistics/libgnunetstatistics.la \ | ||||
$(top_builddir)/src/core/libgnunetcore.la \ | ||||
$(top_builddir)/src/transport/libgnunettransport.la \ | ||||
$(top_builddir)/src/util/libgnunetutil.la | ||||
do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g' | do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g' | |||
%.py: %.py.in Makefile | %.py: %.py.in Makefile | |||
$(do_subst) < $(srcdir)/$< > $@ | $(do_subst) < $(srcdir)/$< > $@ | |||
chmod +x $@ | chmod +x $@ | |||
gnunet_testing.py: gnunet_testing.py.in Makefile | gnunet_testing.py: gnunet_testing.py.in Makefile | |||
$(do_subst) < $(srcdir)/gnunet_testing.py.in > gnunet_testing.py | $(do_subst) < $(srcdir)/gnunet_testing.py.in > gnunet_testing.py | |||
chmod +x gnunet_testing.py | chmod +x gnunet_testing.py | |||
skipping to change at line 82 | skipping to change at line 98 | |||
chmod +x test_integration_restart.py | chmod +x test_integration_restart.py | |||
test_integration_clique.py: test_integration_clique.py.in Makefile | test_integration_clique.py: test_integration_clique.py.in Makefile | |||
$(do_subst) < $(srcdir)/test_integration_clique.py.in > test_integra tion_clique.py | $(do_subst) < $(srcdir)/test_integration_clique.py.in > test_integra tion_clique.py | |||
chmod +x test_integration_clique.py | chmod +x test_integration_clique.py | |||
test_integration_clique_nat.py: test_integration_clique_nat.py.in Makefile | test_integration_clique_nat.py: test_integration_clique_nat.py.in Makefile | |||
$(do_subst) < $(srcdir)/test_integration_clique_nat.py.in > test_int egration_clique_nat.py | $(do_subst) < $(srcdir)/test_integration_clique_nat.py.in > test_int egration_clique_nat.py | |||
chmod +x test_integration_clique_nat.py | chmod +x test_integration_clique_nat.py | |||
test_integration_connect_on_restart.py: test_integration_connect_on_restart | ||||
.py.in Makefile | ||||
$(do_subst) < $(srcdir)/test_integration_connect_on_restart.py.in > | ||||
test_integration_connect_on_restart.py | ||||
chmod +x test_integration_connect_on_restart.py | ||||
test_integration_connection_values_tcp.py: test_integration_connection_valu | ||||
es_tcp.py.in Makefile | ||||
$(do_subst) < $(srcdir)/test_integration_connection_values_tcp.py.in | ||||
> test_integration_connection_values_tcp.py | ||||
chmod +x test_integration_connection_values_tcp.py | ||||
test_integration_connection_values_tcp_udp.py: test_integration_connection_ | ||||
values_tcp_udp.py.in Makefile | ||||
$(do_subst) < $(srcdir)/test_integration_connection_values_tcp_udp.p | ||||
y.in > test_integration_connection_values_tcp_udp.py | ||||
chmod +x test_integration_connection_values_tcp_udp.py | ||||
test_integration_connection_values_tcp_udp_http.py: test_integration_connec | ||||
tion_values_tcp_udp_http.py.in Makefile | ||||
$(do_subst) < $(srcdir)/test_integration_connection_values_tcp_udp_h | ||||
ttp.py.in > test_integration_connection_values_tcp_udp_http.py | ||||
chmod +x test_integration_connection_values_tcp_udp_http.py | ||||
test_connection_stability_SOURCES = \ | ||||
test_connection_stability.c | ||||
test_connection_stability_LDADD = \ | ||||
$(top_builddir)/src/testing/libgnunettesting.la \ | ||||
$(top_builddir)/src/util/libgnunetutil.la | ||||
EXTRA_DIST = \ | EXTRA_DIST = \ | |||
gnunet_testing.py.in \ | gnunet_testing.py.in \ | |||
gnunet_pyexpect.py.in \ | gnunet_pyexpect.py.in \ | |||
test_integration_connection_values_tcp.py.in \ | ||||
test_integration_connection_values_tcp_udp.py.in \ | ||||
test_integration_connection_values_tcp_udp_http.py.in \ | ||||
test_integration_bootstrap_and_connect.py.in \ | test_integration_bootstrap_and_connect.py.in \ | |||
test_integration_bootstrap_and_connect_and_disconnect.py.in \ | test_integration_bootstrap_and_connect_and_disconnect.py.in \ | |||
test_integration_bootstrap_and_connect_and_disconnect_nat.py.in \ | test_integration_bootstrap_and_connect_and_disconnect_nat.py.in \ | |||
test_integration_connect_on_restart.py.in \ | ||||
test_integration_disconnect.py.in \ | test_integration_disconnect.py.in \ | |||
test_integration_restart.py.in \ | test_integration_restart.py.in \ | |||
test_integration_clique.py.in \ | test_integration_clique.py.in \ | |||
test_integration_clique_nat.py.in \ | test_integration_clique_nat.py.in \ | |||
confs/c_bootstrap_server.conf \ | confs/c_bootstrap_server.conf \ | |||
confs/c_nat_client.conf \ | confs/c_nat_client.conf \ | |||
confs/c_no_nat_client_2.conf \ | confs/c_no_nat_client_2.conf \ | |||
confs/c_no_nat_client.conf \ | confs/c_no_nat_client.conf \ | |||
confs/c_normal_client_tcp.conf \ | ||||
confs/c_normal_client_tcp_udp.conf \ | ||||
confs/c_normal_client_tcp_udp_http.conf \ | ||||
confs/c_no_nat_client_http.conf \ | ||||
confs/c_no_nat_client_http_2.conf\ | ||||
confs/c_no_nat_client_http.conf \ | ||||
confs/c_no_nat_client_http_2.conf \ | ||||
confs/c_no_nat_client_unix.conf \ | ||||
confs/c_no_nat_client_unix_2.conf \ | ||||
test_connection_stability.conf \ | ||||
hostkeys/0000-hostkey \ | hostkeys/0000-hostkey \ | |||
hostkeys/0001-hostkey \ | hostkeys/0001-hostkey \ | |||
hostkeys/0002-hostkey \ | hostkeys/0002-hostkey \ | |||
hostkeys/0003-hostkey \ | hostkeys/0003-hostkey \ | |||
hostkeys/0004-hostkey \ | hostkeys/0004-hostkey \ | |||
hostkeys/0005-hostkey \ | hostkeys/0005-hostkey \ | |||
hostkeys/0006-hostkey \ | hostkeys/0006-hostkey \ | |||
hostkeys/0007-hostkey \ | hostkeys/0007-hostkey \ | |||
hostkeys/0008-hostkey \ | hostkeys/0008-hostkey \ | |||
hostkeys/0009-hostkey | hostkeys/0009-hostkey | |||
End of changes. 10 change blocks. | ||||
4 lines changed or deleted | 64 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |