Add a test script to check subsystem order as part of make check.

This commit is contained in:
Nick Mathewson
2020-03-26 12:37:49 -04:00
committed by teor
parent 978b7ef45c
commit 9b434b79ce
2 changed files with 20 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -e
TOR="${abs_top_builddir:-.}/src/app/tor"
INCLUDES_PY="${abs_top_srcdir:-.}/scripts/maint/practracker/includes.py"
if ! test -x "${INCLUDES_PY}" ; then
echo "skip"
exit 77
fi
"${TOR}" --dbg-dump-subsystem-list | \
"${INCLUDES_PY}" --check-subsystem-order -
echo ok