We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 58aeffb + 260e044 commit 672bc7fCopy full SHA for 672bc7f
1 file changed
scripts/tests.sh
@@ -109,9 +109,18 @@ function run_eth()
109
sleep 2
110
}
111
112
+function check_eth() {
113
+ printTask "Running IPC tests with $ETH_PATH..."
114
+ if ! hash $ETH_PATH 2>/dev/null; then
115
+ printError "$ETH_PATH not found"
116
+ exit 1
117
+ fi
118
+}
119
+
120
if [ "$IPC_ENABLED" = true ];
121
then
122
download_eth
123
+ check_eth
124
ETH_PID=$(run_eth /tmp/test)
125
fi
126
0 commit comments