mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
10 lines
254 B
Bash
Executable File
10 lines
254 B
Bash
Executable File
#!/bin/sh
|
|
# Validate Tor's ntor implementation.
|
|
|
|
exitcode=0
|
|
|
|
"${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/ntor_ref.py" test-tor || exitcode=1
|
|
"${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/ntor_ref.py" self-test || exitcode=1
|
|
|
|
exit ${exitcode}
|