diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-09-11 08:59:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-09-11 08:59:29 -0400 |
commit | e7565855c0105836857acf9c67363d1f6948e4ac (patch) | |
tree | ffe76dbaa5a3ea13339ae6f67320be405ef93774 /scripts/maint/practracker/test_practracker.sh | |
parent | 796a9b37ea346f413f6684505ca31879ddf3f0f1 (diff) | |
parent | 03040903e677172ce46319b83f9d00bafb33fad7 (diff) | |
download | tor-e7565855c0105836857acf9c67363d1f6948e4ac.tar.gz tor-e7565855c0105836857acf9c67363d1f6948e4ac.zip |
Merge branch 'ticket31578' into ticket31578_merged
Diffstat (limited to 'scripts/maint/practracker/test_practracker.sh')
-rwxr-xr-x | scripts/maint/practracker/test_practracker.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/maint/practracker/test_practracker.sh b/scripts/maint/practracker/test_practracker.sh index 4f8b7e2047..bfbd0c6560 100755 --- a/scripts/maint/practracker/test_practracker.sh +++ b/scripts/maint/practracker/test_practracker.sh @@ -25,9 +25,13 @@ DATA="${PRACTRACKER_DIR}/testdata" run_practracker() { "${PYTHON:-python}" "${PRACTRACKER_DIR}/practracker.py" \ - --max-include-count=0 --max-file-size=0 \ - --max-h-include-count=0 --max-h-file-size=0 \ - --max-function-size=0 --terse \ + --include-dir "" \ + --max-file-size=0 \ + --max-function-size=0 \ + --max-h-file-size=0 \ + --max-h-include-count=0 \ + --max-include-count=0 \ + --terse \ "${DATA}/" "$@"; } compare() { |