mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
18 lines
309 B
Bash
18 lines
309 B
Bash
|
#!/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
|