diff options
-rwxr-xr-x | test/integration_test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration_test.sh b/test/integration_test.sh index 9ff45a3..32adb89 100755 --- a/test/integration_test.sh +++ b/test/integration_test.sh @@ -5,8 +5,8 @@ set -x set -o pipefail -SRC_ROOT=$(realpath $(dirname $0)/..) -PTUNNEL_BIN=${PTUNNEL_BIN:-${SRC_ROOT}/src/ptunnel-ng} +BIN_ROOT="${BIN_ROOT:-$(realpath $(dirname $0)/..)}" +PTUNNEL_BIN=${PTUNNEL_BIN:-${BIN_ROOT}/src/ptunnel-ng} PTUNNEL_ARGS="${PTUNNEL_ARGS:-}" VALGRIND_BIN=${VALGRIND_BIN:-valgrind} VALGRIND_ARGS="--error-exitcode=1 --exit-on-first-error=yes" |