From 1a8a8ac7cf030562de7604b79c343ad69d0f689a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Sch=C3=BCtt?= Date: Sun, 22 Jan 2023 15:26:38 +0100 Subject: [PATCH] Docker: Do not flag slow tests in minimal build --- tools/docker/scripts/test_regtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/docker/scripts/test_regtest.sh b/tools/docker/scripts/test_regtest.sh index 0d27a48997..7b00e2e6a2 100755 --- a/tools/docker/scripts/test_regtest.sh +++ b/tools/docker/scripts/test_regtest.sh @@ -34,7 +34,7 @@ if [[ "${ARCH}" == *cuda* ]] || [[ "${ARCH}" == *hip* ]]; then fi # Flag slow tests in debug runs. -if [[ "${VERSION}" == *dbg* ]]; then +if [[ "${ARCH}" == "local" ]] && [[ "${VERSION}" == *dbg* ]]; then TESTOPTS="--flagslow ${TESTOPTS}" fi