tor/src/test/test_hs_ntor.sh
George Kadianakis ea5901bf1c prop224: Add Python integration tests for HS ntor.
This test is identical to the ./src/test/test_ntor.sh integration test.
2017-04-13 09:22:19 -04:00

12 lines
344 B
Bash
Executable File

#!/bin/sh
# Validate Tor's ntor implementation.
exitcode=0
# Run the python integration test sand 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}