Avoid hanging in tests.sh when IPC program is not found

This commit is contained in:
ajs 2018-07-02 22:23:49 -03:00
parent 4649f9202a
commit 260e044db5

View File

@ -109,9 +109,18 @@ function run_eth()
sleep 2
}
function check_eth() {
printTask "Running IPC tests with $ETH_PATH..."
if ! hash $ETH_PATH 2>/dev/null; then
printError "$ETH_PATH not found"
exit 1
fi
}
if [ "$IPC_ENABLED" = true ];
then
download_eth
check_eth
ETH_PID=$(run_eth /tmp/test)
fi