Regtesting: Add check for slow tests

This commit is contained in:
Ole Schütt 2023-01-16 21:42:50 +01:00 committed by Ole Schütt
parent 0ea91c6b73
commit b01cdf04a1
3 changed files with 92 additions and 12 deletions

View file

@ -33,6 +33,11 @@ if [[ "${ARCH}" == *cuda* ]] || [[ "${ARCH}" == *hip* ]]; then
TESTOPTS="--keepalive ${TESTOPTS}"
fi
# Flag slow tests in debug runs.
if [[ "${VERSION}" == *dbg* ]]; then
TESTOPTS="--flagslow ${TESTOPTS}"
fi
# Switch to stable DBCSR version if requested.
if [ -n "${USE_STABLE_DBCSR}" ]; then
echo "Switching to stable DBCSR version..."