Make test-network.sh more robust against arguments containing spaces
[tor.git] / Makefile.am
blobb5e71aad1e3d66afe8e0ea05af7e0ba7f6d675ed
1 # Copyright (c) 2001-2004, Roger Dingledine
2 # Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
3 # Copyright (c) 2007-2015, The Tor Project, Inc.
4 # See LICENSE for licensing information
6 # "foreign" means we don't follow GNU package layout standards
7 # 1.9 means we require automake vesion 1.9
8 AUTOMAKE_OPTIONS = foreign 1.9 subdir-objects
10 ACLOCAL_AMFLAGS = -I m4
12 noinst_LIBRARIES=
13 EXTRA_DIST=
14 noinst_HEADERS=
15 bin_PROGRAMS=
16 CLEANFILES=
17 TESTS=
18 noinst_PROGRAMS=
19 DISTCLEANFILES=
20 bin_SCRIPTS=
21 AM_CPPFLAGS=
22 AM_CFLAGS = @TOR_SYSTEMD_CFLAGS@
23 SHELL = @SHELL@
24 include src/include.am
25 include doc/include.am
26 include contrib/include.am
28 EXTRA_DIST+= \
29         ChangeLog                                       \
30         INSTALL                                         \
31         LICENSE                                         \
32         Makefile.nmake                                  \
33         README                                          \
34         ReleaseNotes
36 if COVERAGE_ENABLED
37 TEST_CFLAGS=-fno-inline -fprofile-arcs -ftest-coverage
38 TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE
39 TEST_NETWORK_FLAGS="--coverage"
40 else
41 TEST_CFLAGS=
42 TEST_CPPFLAGS=-DTOR_UNIT_TESTS
43 TEST_NETWORK_FLAGS=
44 endif
46 #install-data-local:
47 #       $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
49 # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
50 # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
51 RPMBUILD ?= rpmbuild
53 # Use automake's dist-gzip target to build the tarball
54 dist-rpm: dist-gzip
55         TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S");                                \
56         RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX");      \
57         mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \
58         cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/;                  \
59         LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec;  \
60         cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .;                                     \
61         cp -fa "$$RPM_BUILD_DIR"/RPMS/* .;                                      \
62         rm -rf "$$RPM_BUILD_DIR";                                               \
63         echo "RPM build finished";                                              \
64         #end of dist-rpm
66 dist: check
68 doxygen:
69         doxygen && cd doc/doxygen/latex && make
71 test: all
72         $(top_builddir)/src/test/test
74 need-chutney-path:
75         @if test ! -d "$$CHUTNEY_PATH"; then \
76                 echo '$$CHUTNEY_PATH was not set.'; \
77                 if test -d $(top_srcdir)/../chutney -a -x $(top_srcdir)/../chutney/chutney; then \
78                         echo "Assuming test-network.sh will find" $(top_srcdir)/../chutney; \
79                 else \
80                         echo; \
81                         echo "To run these tests, git clone https://git.torproject.org/chutney.git ; export CHUTNEY_PATH=\`pwd\`/chutney"; \
82                         exit 1; \
83                 fi \
84         fi
86 # Note that test-network requires a copy of Chutney in $CHUTNEY_PATH.
87 # Chutney can be cloned from https://git.torproject.org/chutney.git .
88 test-network: need-chutney-path all
89         $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_FLAGS)
91 need-stem-path:
92         @if test ! -d "$$STEM_SOURCE_DIR"; then \
93                 echo '$$STEM_SOURCE_DIR was not set.'; echo; \
94                 echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \
95                 exit 1; \
96         fi
98 test-stem: need-stem-path $(TESTING_TOR_BINARY)
99         @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL;
101 test-stem-full: need-stem-path $(TESTING_TOR_BINARY)
102         @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL,ONLINE -v;
104 test-full: need-stem-path need-chutney-path check test-network test-stem
106 test-full-online: need-stem-path need-chutney-path check test-network test-stem-full
108 reset-gcov:
109         rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda
111 HTML_COVER_DIR=$(top_builddir)/coverage_html
112 coverage-html: all
113 if COVERAGE_ENABLED
114         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
115         test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)"
116         lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters
117         $(MAKE) reset-gcov
118         $(MAKE) check
119         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp"
120         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
121         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
122 else
123         @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n"
124 endif
126 coverage-html-full: all
127         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
128         test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)"
129         lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters
130         $(MAKE) reset-gcov
131         $(MAKE) check
132         $(MAKE) test-stem-full
133         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh
134         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs
135         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --output-file "$(HTML_COVER_DIR)/lcov.tmp"
136         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
137         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
139 # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
140 # eventdns.[hc], tinytest*.[ch]
141 check-spaces:
142         $(top_srcdir)/scripts/maint/checkSpace.pl -C \
143                 $(top_srcdir)/src/common/*.[ch] \
144                 $(top_srcdir)/src/or/*.[ch] \
145                 $(top_srcdir)/src/test/*.[ch] \
146                 $(top_srcdir)/src/tools/*.[ch]
148 check-docs: all
149         $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl
151 check-logs:
152         $(top_srcdir)/scripts/maint/checkLogs.pl \
153                 $(top_srcdir)/src/*/*.[ch] | sort -n
155 .PHONY: check-changes
156 check-changes:
157         @if test -d "$(top_srcdir)/changes"; then \
158                 $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes/*; \
159                 fi
161 .PHONY: update-versions
162 update-versions:
163         $(PERL) $(top_builddir)/scripts/maint/updateVersions.pl
165 version:
166         @echo "Tor @VERSION@"
167         @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
168            echo -n "git: " ;\
169            (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
170         fi
172 mostlyclean-local:
173         rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no}
174         rm -rf $(HTML_COVER_DIR)
175         rm -rf $(top_builddir)/doc/doxygen