mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
f6167f51ac
This reverts commit ecf98313d6
.
It didn't help.
10 lines
220 B
Bash
10 lines
220 B
Bash
#!@SHELL@
|
|
# Validate Tor's ntor implementation.
|
|
|
|
exitcode=0
|
|
|
|
@PYTHON@ @abs_top_srcdir@/src/test/ntor_ref.py test-tor || exitcode=1
|
|
@PYTHON@ @abs_top_srcdir@/src/test/ntor_ref.py self-test || exitcode=1
|
|
|
|
exit ${exitcode}
|