blob: ee7141cc9ad040bf2e13619d753fb35072b6e68e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Validate Tor's ntor implementation.
exitcode=0
# Run the python integration tests and return the exitcode of the python
# script. The python script might ask the testsuite to skip it if not all
# python dependencies are covered.
"${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/hs_ntor_ref.py" || exitcode=$?
exit ${exitcode}
|