From a40c862ca6669c3158133bc395f4a038cafe3b57 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 2 May 2025 23:25:49 +0200 Subject: [PATCH] ci/vkd3d: stop supressing vulkaninfo errors Part-of: --- .gitlab-ci/vkd3d-runner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/vkd3d-runner.sh b/.gitlab-ci/vkd3d-runner.sh index 401baa50f89..d3dcdc8df25 100755 --- a/.gitlab-ci/vkd3d-runner.sh +++ b/.gitlab-ci/vkd3d-runner.sh @@ -43,7 +43,7 @@ fi # Sanity check to ensure that our environment is sufficient to make our tests # run against the Mesa built by CI, rather than any installed distro version. MESA_VERSION=$(cat "$INSTALL/VERSION") -if ! vulkaninfo 2>/dev/null | grep driverInfo | tee /tmp/version.txt | grep -qF "Mesa $MESA_VERSION"; then +if ! vulkaninfo | grep driverInfo | tee /tmp/version.txt | grep -qF "Mesa $MESA_VERSION"; then printf "%s\n" "Found $(cat /tmp/version.txt), expected $MESA_VERSION" exit 1 fi