diff --git a/ci/jenkins/bin/autest.sh b/ci/jenkins/bin/autest.sh index 7df0372b1e5..2b8f86565ba 100755 --- a/ci/jenkins/bin/autest.sh +++ b/ci/jenkins/bin/autest.sh @@ -105,7 +105,11 @@ set +x echo -n "=======>>>> Started on " date -./tests/autest.sh --sandbox "$SANDBOX" --ats-bin "${INSTALL}/bin" $AUTEST_DEBUG $AUTEST_VERBOSE +AUTEST="/usr/bin/autest" +[ ! -x ${AUTEST} ] && AUTEST="/usr/local/bin/autest" +set -x + +${AUTEST} -D ./tests/gold_tests --sandbox "$SANDBOX" --ats-bin "${INSTALL}/bin" $AUTEST_DEBUG $AUTEST_VERBOSE status=$? set +x