mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
8 lines
146 B
Bash
8 lines
146 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
exitcode=0
|
||
|
|
||
|
"${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/test_rebind.py" "${TESTING_TOR_BINARY}" || exitcode=1
|
||
|
|
||
|
exit ${exitcode}
|