aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
AgeCommit message (Collapse)Author
2019-10-16Doxygen: stop producing LaTeX.Nick Mathewson
Running doxygen with latex gave us all manner of unicode issues, slowed down the "make doxygen" target by a lot, and added several latex dependencies... all to produce a 4000-page reference manual which is probably not what anybody wanted. Closes ticket 32099.
2019-09-30Merge branch 'tor-github/pr/1339'George Kadianakis
2019-09-27Rename annotate_ifdef_directives to end with .py.Nick Mathewson
This allows the python doctest module to process it correctly when invoked as: python -m doctest -v annotate_ifdef_directives.py
2019-09-18practracker: Integration test for --list-overbroadNick Mathewson
Make sure that we list overbroad exceptions, and nothing else
2019-09-09Merge branch 'tor-github/pr/1264'David Goulet
2019-09-05Add new practracker test files to Makefile.amNick Mathewson
2019-09-05Makefile: include checkShellScripts.sh in EXTRA_DISTteor
Part of 30967.
2019-09-05shellcheck: Add shellcheck to the pre-commit hookteor
* Move the shellcheck script from the Makefile to its own script file * Reformat the shellcheck script so it's easier to read and modify * Call the shellcheck script from the pre-commit hook Fixes bug 30967; not in any released version of Tor.
2019-09-05Makefile: Explicitly list the subdirectories that contain scriptsteor
Part of 30967.
2019-09-04Merge branch 'maint-0.4.1'David Goulet
2019-09-04Merge branch 'tor-github/pr/1271' into maint-0.4.1David Goulet
2019-08-29test: Change "make test-stem" so it only runs the stem tests that use torteor
This change makes test-stem faster and more reliable. Use "make test-stem-full" to run all of stem's tests. Closes ticket 31554.
2019-08-21Document new practracker violation types, and add a practracker readmeNick Mathewson
Closes ticket 31476.
2019-08-21Merge branch 'ticket31176' into ticket31176_mergedNick Mathewson
2019-08-06Merge branch 'tor-github/pr/1195'George Kadianakis
2019-08-05Move checkIncludes inside practrackerNick Mathewson
Update the makefile accordingly.
2019-08-01Distribute practracker unit and integration tests.Nick Mathewson
2019-08-01Merge branch 'ticket31311_041' into ticket31304Nick Mathewson
2019-08-01make dist: only include files from practracker dir intentionally.Nick Mathewson
Previously, we included temporary files and whatnot, which is not good. Fixes bug 31311; bugfix on 0.4.1.1-alpha.
2019-08-01practracker: add envvar TOR_PRACTRACKER_OPTIONSNick Mathewson
We have Makefile.am use this to decide how to invoke practracker on the Tor source.
2019-08-01Merge branch 'tor-github/pr/1177'David Goulet
2019-08-01Lower check of TOR_DISABLE_PRACTRACKERNick Mathewson
Since we sometimes call practracker directly, that's where we should check the TOR_DISABLE_PRACTRACKER envvar.
2019-07-23Merge branch 'tor-github/pr/1116'David Goulet
2019-07-18Add a TOR_DISABLE_PRACTRACKER envvar for use by folks who don't careNick Mathewson
Fixes part of bug 30752
2019-06-26Merge branch 'tor-github/pr/1109'George Kadianakis
2019-06-24Add a "typed_var" abstraction to implement lvalue access in C.Nick Mathewson
Right now, this has been done at a high level by confparse.c, but it makes more sense to lower it. This API is radically un-typesafe as it stands; we'll be wrapping it in a safer API as we do #30914 and lower the struct manipulation code as well. Closes ticket 30864.
2019-06-24Move unit-parsing code to src/lib/confmgtNick Mathewson
lib/confmgt is at a higher level than lib/conf, since it needs to call down to logging and similar modules.
2019-06-24Don't try to shellcheck src/rust/registryNick Mathewson
Fixes bug 30963; bug not in any released Tor.
2019-06-19remove practracker from check-local (0.4.1 only)Nick Mathewson
2019-06-17Shellcheck all the scriptsrl1987
2019-06-14make: Improve the documentation for test-network-allteor
"make test-network-all" shows the warnings from each test-network.sh run on the console, so developers see new warnings early. Improve the documentation for this feature, and rename a Makefile variable so the code is self-documenting. Fixes bug 30455; bugfix on 0.3.0.4-rc.
2019-05-20Add a new "autostyle" make target to run all of our reformattingNick Mathewson
Closes ticket 30539.
2019-04-29Merge branch 'maint-0.4.0'Nick Mathewson
2019-04-23Stop looking for scripts in the build directory during "make shellcheck"teor
Fixes bug 30263; bugfix on 0.4.0.1-alpha.
2019-04-05Merge branch 'maint-0.4.0'George Kadianakis
2019-04-05Merge branch 'tor-github/pr/879' into maint-0.4.0George Kadianakis
2019-04-05Merge branch 'bug29036-29962-034' into bug29036-29962-035teor
2019-04-05Merge branch 'bug29036-029' into bug29036-29962-034teor
2019-04-05Makefile: actually, don't delete the gcno filesteor
We need to keep the gcno files, because they are created at compile time.
2019-04-01Merge branch 'bug29036-29962-034' into bug29036-29962-035teor
Merge the moved coverage line from 29036 with the stem changes in maint-0.3.5.
2019-04-01Merge branch 'bug29036-029' into bug29036-29962-034teor
2019-04-01Makefile: delete all the gcov-related files in reset-gcovteor
And fix a comment. See: https://gcc.gnu.org/onlinedocs/gcc/Gcov-Data-Files.html#Gcov-Data-Files
2019-03-26Merge branch 'messaging_v3' into messaging_v3_mergedNick Mathewson
2019-03-25pubsub: relationship checking functionalityNick Mathewson
This code tries to prevent a large number of possible errors by enforcing different restrictions on the messages that different modules publish and subscribe to. Some of these rules are probably too strict, and some too lax: we should feel free to change them as needed as we move forward and learn more.
2019-03-25Low-level dispatch module for publish-subscribe mechanismNick Mathewson
This module implements a way to send messages from one module to another, with associated data types. It does not yet do anything to ensure that messages are correct, that types match, or that other forms of consistency are preserved.
2019-03-25Add a practracker-regen make targetNick Mathewson
2019-03-13Call practracker as part of check-local.George Kadianakis
- Introduce 'make check-best-practices'. - Fix up Tor topdir etc to work with the way 'make check-local' gets called. - Make practracker less likely to print useless stuff.
2019-01-22Merge remote-tracking branch 'tor-github/pr/653'Nick Mathewson
2019-01-16Bump copyright date to 2019Nick Mathewson
2019-01-16Bump copyright date to 2019.Nick Mathewson