]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Add "check-includes" to check-local.
authorNick Mathewson <nickm@torproject.org>
Mon, 9 Jul 2018 19:53:19 +0000 (15:53 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 9 Jul 2018 19:55:03 +0000 (15:55 -0400)
Makefile.am
changes/ticket26447 [new file with mode: 0644]

index 0f934cf0f229962107dcbc5dfb89e39edd21bc24..adeca6e43abe48d4289c0e69772c2443db89708d 100644 (file)
@@ -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 \
diff --git a/changes/ticket26447 b/changes/ticket26447
new file mode 100644 (file)
index 0000000..757a402
--- /dev/null
@@ -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.