Browse Source

Add "check-includes" to check-local.

Nick Mathewson 5 years ago
parent
commit
cade65fd2e
2 changed files with 6 additions and 1 deletions
  1. 1 1
      Makefile.am
  2. 5 0
      changes/ticket26447

+ 1 - 1
Makefile.am

@@ -197,7 +197,7 @@ doxygen:
 test: all
 	$(top_builddir)/src/test/test
 
-check-local: check-spaces check-changes
+check-local: check-spaces check-changes check-includes
 
 need-chutney-path:
 	@if test ! -d "$$CHUTNEY_PATH"; then \

+ 5 - 0
changes/ticket26447

@@ -0,0 +1,5 @@
+  o Minor features (code correctness, testing):
+    - Tor's build process now includes a "check-includes" make target
+      to verify that no module of Tor relies on any headers from a
+      higher-level module. We hope to use this feature over time to
+      help refactor our codebase.  Closes ticket 26447.