test_hs_ntor.sh 344 B

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