Makefile.am 8.7 KB

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