X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/5e805cf2209d3afe42699e4658d8a12e50bcd5a4..e26fdc06a54e8b4fb7c22f78d335d02d2d7c3ea5:/tools/run-integration-tests.sh diff --git a/tools/run-integration-tests.sh b/tools/run-integration-tests.sh index 6a6177a4..367ccecd 100755 --- a/tools/run-integration-tests.sh +++ b/tools/run-integration-tests.sh @@ -114,11 +114,13 @@ coproc arvboot (~/go/bin/arvados-server boot \ -type test \ -config ${TMPDIR}/arvados.yml \ -no-workbench1 \ + -no-workbench2 \ -own-temporary-database \ -timeout 20m 2> ${ARVADOS_LOG}) trap cleanup ERR EXIT -read controllerURL <&"${arvboot[0]}" || exit 1 +read controllerInfo <&"${arvboot[0]}" || exit 1 +controllerURL=`echo "$controllerInfo" | awk '{print $1;}'`; echo "Arvados up and running at ${controllerURL}" IFS='/' ; read -ra controllerHostPort <<< "${controllerURL}" ; unset IFS controllerHostPort=${controllerHostPort[2]}