Extract ExitPolicy-and-IPv6Exit check into a new function
[tor.git] / Makefile.am
blobf400728bacb9fd821707328e2f7dc5abc4f69b85
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 ACLOCAL_AMFLAGS = -I m4
8 noinst_LIBRARIES=
9 EXTRA_DIST=
10 noinst_HEADERS=
11 bin_PROGRAMS=
12 CLEANFILES=
13 TESTS=
14 noinst_PROGRAMS=
15 DISTCLEANFILES=
16 bin_SCRIPTS=
17 AM_CPPFLAGS=
18 AM_CFLAGS=@TOR_SYSTEMD_CFLAGS@ @CFLAGS_BUGTRAP@
19 SHELL=@SHELL@
21 if COVERAGE_ENABLED
22 TESTING_TOR_BINARY=$(top_builddir)/src/or/tor-cov$(EXEEXT)
23 else
24 TESTING_TOR_BINARY=$(top_builddir)/src/or/tor$(EXEEXT)
25 endif
27 include src/include.am
28 include doc/include.am
29 include contrib/include.am
31 EXTRA_DIST+= \
32         ChangeLog                                       \
33         INSTALL                                         \
34         LICENSE                                         \
35         Makefile.nmake                                  \
36         README                                          \
37         ReleaseNotes
39 ## This tells etags how to find mockable function definitions.
40 AM_ETAGSFLAGS=--regex='{c}/MOCK_IMPL([^,]+,\W*\([a-zA-Z0-9_]+\)\W*,/\1/s'
42 if COVERAGE_ENABLED
43 TEST_CFLAGS=-fno-inline -fprofile-arcs -ftest-coverage
44 if DISABLE_ASSERTS_IN_UNIT_TESTS
45 TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE -DDISABLE_ASSERTS_IN_UNIT_TESTS
46 else
47 TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE
48 endif
49 TEST_NETWORK_FLAGS=--coverage --hs-multi-client 1
50 else
51 TEST_CFLAGS=
52 TEST_CPPFLAGS=-DTOR_UNIT_TESTS
53 TEST_NETWORK_FLAGS=--hs-multi-client 1
54 endif
56 TEST_NETWORK_ALL_LOG_DIR=$(top_builddir)/test_network_log
57 TEST_NETWORK_ALL_DRIVER_FLAGS=--color-tests yes
59 #install-data-local:
60 #       $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
62 # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
63 # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
64 RPMBUILD ?= rpmbuild
66 # Use automake's dist-gzip target to build the tarball
67 dist-rpm: dist-gzip
68         TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S");                                \
69         RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX");      \
70         mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \
71         cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/;                  \
72         LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec;  \
73         cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .;                                     \
74         cp -fa "$$RPM_BUILD_DIR"/RPMS/* .;                                      \
75         rm -rf "$$RPM_BUILD_DIR";                                               \
76         echo "RPM build finished";                                              \
77         #end of dist-rpm
79 doxygen:
80         doxygen && cd doc/doxygen/latex && make
82 test: all
83         $(top_builddir)/src/test/test
85 need-chutney-path:
86         @if test ! -d "$$CHUTNEY_PATH"; then \
87                 echo '$$CHUTNEY_PATH was not set.'; \
88                 if test -d $(top_srcdir)/../chutney -a -x $(top_srcdir)/../chutney/chutney; then \
89                         echo "Assuming test-network.sh will find" $(top_srcdir)/../chutney; \
90                 else \
91                         echo; \
92                         echo "To run these tests, git clone https://git.torproject.org/chutney.git ; export CHUTNEY_PATH=\`pwd\`/chutney"; \
93                         exit 1; \
94                 fi \
95         fi
97 # Note that test-network requires a copy of Chutney in $CHUTNEY_PATH.
98 # Chutney can be cloned from https://git.torproject.org/chutney.git .
99 test-network: need-chutney-path $(TESTING_TOR_BINARY) src/tools/tor-gencert
100         $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_FLAGS)
102 # Run all available tests using automake's test-driver
103 # only run IPv6 tests if we can ping6 ::1 (localhost)
104 # some IPv6 tests will fail without an IPv6 DNS server (see #16971 and #17011)
105 # only run mixed tests if we have a tor-stable binary
106 # Try both the BSD and the Linux ping6 syntax, because they're incompatible
107 test-network-all: need-chutney-path test-driver $(TESTING_TOR_BINARY) src/tools/tor-gencert
108         mkdir -p $(TEST_NETWORK_ALL_LOG_DIR)
109         @flavors="$(TEST_CHUTNEY_FLAVORS)"; \
110         if ping6 -q -c 1 -o ::1 >/dev/null 2>&1 || ping6 -q -c 1 -W 1 ::1 >/dev/null 2>&1; then \
111                 echo "ping6 ::1 succeeded, running IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
112                 flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
113         else \
114                 echo "ping6 ::1 failed, skipping IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
115                 skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
116         fi; \
117         if command -v tor-stable >/dev/null 2>&1; then \
118                 echo "tor-stable found, running mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
119                 flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
120         else \
121                 echo "tor-stable not found, skipping mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
122                 skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
123         fi; \
124         for f in $$skip_flavors; do \
125                 echo "SKIP: $$f"; \
126         done; \
127         for f in $$flavors; do \
128                 $(SHELL) $(top_srcdir)/test-driver --test-name $$f --log-file $(TEST_NETWORK_ALL_LOG_DIR)/$$f.log --trs-file $(TEST_NETWORK_ALL_LOG_DIR)/$$f.trs $(TEST_NETWORK_ALL_DRIVER_FLAGS) $(top_srcdir)/src/test/test-network.sh --flavor $$f $(TEST_NETWORK_FLAGS); \
129         done; \
130         echo "Log and result files are available in $(TEST_NETWORK_ALL_LOG_DIR)."; \
131         ! grep -q FAIL test_network_log/*.trs
133 need-stem-path:
134         @if test ! -d "$$STEM_SOURCE_DIR"; then \
135                 echo '$$STEM_SOURCE_DIR was not set.'; echo; \
136                 echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \
137                 exit 1; \
138         fi
140 test-stem: need-stem-path $(TESTING_TOR_BINARY)
141         @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL;
143 test-stem-full: need-stem-path $(TESTING_TOR_BINARY)
144         @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL,ONLINE -v;
146 test-full: need-stem-path need-chutney-path check test-network test-stem
148 test-full-online: need-stem-path need-chutney-path check test-network test-stem-full
150 reset-gcov:
151         rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda
153 HTML_COVER_DIR=$(top_builddir)/coverage_html
154 coverage-html: all
155 if COVERAGE_ENABLED
156         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
157         test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)"
158         lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters
159         $(MAKE) reset-gcov
160         $(MAKE) check
161         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp"
162         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
163         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
164 else
165         @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n"
166 endif
168 coverage-html-full: all
169         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
170         test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)"
171         lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters
172         $(MAKE) reset-gcov
173         $(MAKE) check
174         $(MAKE) test-stem-full
175         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh
176         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs
177         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --output-file "$(HTML_COVER_DIR)/lcov.tmp"
178         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
179         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
181 # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
182 # tinytest*.[ch]
183 check-spaces:
184         $(top_srcdir)/scripts/maint/checkSpace.pl -C \
185                 $(top_srcdir)/src/common/*.[ch] \
186                 $(top_srcdir)/src/or/*.[ch] \
187                 $(top_srcdir)/src/test/*.[ch] \
188                 $(top_srcdir)/src/tools/*.[ch]
190 check-docs: all
191         $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl
193 check-logs:
194         $(top_srcdir)/scripts/maint/checkLogs.pl \
195                 $(top_srcdir)/src/*/*.[ch] | sort -n
197 .PHONY: check-changes
198 check-changes:
199         @if test -d "$(top_srcdir)/changes"; then \
200                 $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes/*; \
201                 fi
203 .PHONY: update-versions
204 update-versions:
205         $(PERL) $(top_builddir)/scripts/maint/updateVersions.pl
207 version:
208         @echo "Tor @VERSION@"
209         @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
210            echo -n "git: " ;\
211            (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
212         fi
214 mostlyclean-local:
215         rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no}
216         rm -rf $(HTML_COVER_DIR)
217         rm -rf $(top_builddir)/doc/doxygen
218         rm -rf $(TEST_NETWORK_ALL_LOG_DIR)