From 9a9204764a7a6204275d2a7d5f7659fd20f23df6 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 14 Jun 2024 15:31:13 +0200 Subject: [PATCH] ci/vkd3d: drop `quiet` wrapper It could be useful for complex printf with embedded subshells, but here it's just spammy, which is the opposite of what it claims to be for. Part-of: --- .gitlab-ci/vkd3d-proton/run.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.gitlab-ci/vkd3d-proton/run.sh b/.gitlab-ci/vkd3d-proton/run.sh index 75da12fb46a..249e0252b2a 100755 --- a/.gitlab-ci/vkd3d-proton/run.sh +++ b/.gitlab-ci/vkd3d-proton/run.sh @@ -29,13 +29,6 @@ export WINEDEBUG="-all" export WINEPREFIX="/vkd3d-proton-wine64" export WINEESYNC=1 -# wrapper to supress +x to avoid spamming the log -quiet() { - set +x - "$@" - set -x -} - # 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") @@ -44,7 +37,7 @@ if ! vulkaninfo | grep driverInfo | tee /tmp/version.txt | grep -F "Mesa $MESA_V exit 1 fi -quiet printf "%s\n" "Running vkd3d-proton testsuite..." +printf "%s\n" "Running vkd3d-proton testsuite..." if ! /vkd3d-proton-tests/x64/bin/d3d12 > "$RESULTS/vkd3d-proton-log.txt"; then # Check if the executable finished (ie. no segfault).