diff --git a/Build/Scripts/runTests.sh b/Build/Scripts/runTests.sh index 9fbd670..a9b98d9 100755 --- a/Build/Scripts/runTests.sh +++ b/Build/Scripts/runTests.sh @@ -630,11 +630,14 @@ echo "TYPO3: ${CORE_VERSION}" >&2 echo "CONTAINER_BIN: ${CONTAINER_BIN}" if [[ ${TEST_SUITE} =~ ^functional$ ]]; then case "${DBMS}" in - mariadb|mysql|postgres) + mariadb|mysql) echo "DBMS: ${DBMS} version ${DBMS_VERSION} driver ${DATABASE_DRIVER}" >&2 ;; + postgres) + echo "DBMS: ${DBMS} version ${DBMS_VERSION} driver pdo_pgsql" >&2 + ;; sqlite) - echo "DBMS: ${DBMS}" >&2 + echo "DBMS: ${DBMS} driver pdo_sqlite" >&2 ;; esac fi