ci/vkd3d: rename vkd3d expected failures list to be more explicit

And allow for something other than just "failures", such as...
skips and flakes (see next commits).

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30413>
This commit is contained in:
Eric Engestrom
2024-07-15 15:09:18 +02:00
committed by Marge Bot
parent 642409bc19
commit ab1e99de62
3 changed files with 5 additions and 5 deletions

View File

@@ -38,11 +38,11 @@ if ! vulkaninfo | grep driverInfo | tee /tmp/version.txt | grep -F "Mesa $MESA_V
fi
# Gather the list expected failures
EXPECTATIONFILE="$RESULTS/$GPU_VERSION-vkd3d.txt"
if [ -f "$INSTALL/$GPU_VERSION-vkd3d.txt" ]; then
cp "$INSTALL/$GPU_VERSION-vkd3d.txt" "$EXPECTATIONFILE"
EXPECTATIONFILE="$RESULTS/$GPU_VERSION-vkd3d-fails.txt"
if [ -f "$INSTALL/$GPU_VERSION-vkd3d-fails.txt" ]; then
cp "$INSTALL/$GPU_VERSION-vkd3d-fails.txt" "$EXPECTATIONFILE"
else
printf "%s\n" "$GPU_VERSION-vkd3d.txt not found, assuming a \"no failures\" baseline."
printf "%s\n" "$GPU_VERSION-vkd3d-fails.txt not found, assuming a \"no failures\" baseline."
touch "$EXPECTATIONFILE"
fi

View File

@@ -14,7 +14,7 @@
- src/amd/ci/$GPU_VERSION-flakes.txt
- src/amd/ci/$GPU_VERSION-skips.txt
- src/amd/ci/$PIGLIT_TRACES_FILE
- src/amd/ci/$GPU_VERSION-vkd3d.txt
- src/amd/ci/$GPU_VERSION-vkd3d-fails.txt
- src/amd/common/**/*
- src/amd/llvm/**/*
- src/amd/registers/**/*