X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/fc4b2b280ad3e9f332844116a4c9e57eb843def0..80852d13ef70331d0b5dcb7c0741956967129728:/tools/run-integration-tests.sh diff --git a/tools/run-integration-tests.sh b/tools/run-integration-tests.sh index bf4c3ba4..6a6177a4 100755 --- a/tools/run-integration-tests.sh +++ b/tools/run-integration-tests.sh @@ -105,12 +105,14 @@ echo "Installing dev dependencies..." ~/go/bin/arvados-server install -type test || exit 1 echo "Launching arvados in test mode..." -VOC_DIR=$(mktemp -d | cut -d \/ -f3) # Removes the /tmp/ part -cp ${VOCABULARY_CONF} /tmp/${VOC_DIR}/voc.json -sed -i "s/VocabularyPath: \".*\"/VocabularyPath: \"\/tmp\/${VOC_DIR}\/voc.json\"/" ${ARVADOS_CONF} +TMPSUBDIR=$(mktemp -d -p /tmp | cut -d \/ -f3) # Removes the /tmp/ part for the regex below +TMPDIR=/tmp/${TMPSUBDIR} +cp ${VOCABULARY_CONF} ${TMPDIR}/voc.json +cp ${ARVADOS_CONF} ${TMPDIR}/arvados.yml +sed -i "s/VocabularyPath: \".*\"/VocabularyPath: \"\/tmp\/${TMPSUBDIR}\/voc.json\"/" ${TMPDIR}/arvados.yml coproc arvboot (~/go/bin/arvados-server boot \ -type test \ - -config ${ARVADOS_CONF} \ + -config ${TMPDIR}/arvados.yml \ -no-workbench1 \ -own-temporary-database \ -timeout 20m 2> ${ARVADOS_LOG})