tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

test_hs_ntor.sh (344B)


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