Mesa (main): ci/windows: Allow skipping deqp tests if we have to

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Jun 15 00:33:47 UTC 2022


Module: Mesa
Branch: main
Commit: 672447be7f3d8e88b6f74afecf9f460de8d93842
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=672447be7f3d8e88b6f74afecf9f460de8d93842

Author: Boris Brezillon <boris.brezillon at collabora.com>
Date:   Tue Jun 14 01:00:56 2022 -0700

ci/windows: Allow skipping deqp tests if we have to

Useful to skip tests that are known to crash.

Reviewed-by: Jesse Natalie <jenatali at microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16971>

---

 .gitlab-ci/windows/deqp_runner_run.ps1 | 3 ++-
 src/microsoft/ci/warp-skips.txt        | 0
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci/windows/deqp_runner_run.ps1 b/.gitlab-ci/windows/deqp_runner_run.ps1
index 106f1303c8b..fc056ab72a0 100644
--- a/.gitlab-ci/windows/deqp_runner_run.ps1
+++ b/.gitlab-ci/windows/deqp_runner_run.ps1
@@ -18,11 +18,12 @@ $deqp_module = "C:\deqp\external\vulkancts\modules\vulkan\deqp-vk.exe"
 $caselist = "C:\deqp\mustpass\vk-master.txt"
 $baseline = ".\_install\warp-fails.txt"
 $flakes = ".\_install\warp-flakes.txt"
+$skips = ".\_install\warp-skips.txt"
 $includes = @("-t", "dEQP-VK.api.*", "-t", "dEQP-VK.binding_model.*", "-t", "dEQP-VK.info.*", "-t", "dEQP-VK.draw.*", "-t", "dEQP-VK.query_pool.*", "-t", "dEQP-VK.memory.*", "-t", "dEQP-VK.pipeline.vertex_input.*")
 
 $env:DZN_DEBUG = "warp"
 $env:MESA_VK_IGNORE_CONFORMANCE_WARNING = "true"
-deqp-runner run --deqp $($deqp_module) --output $($results) --caselist $($caselist) --baseline $($baseline) --flakes $($flakes) $($includes) --testlog-to-xml C:\deqp\executor\testlog-to-xml.exe --jobs 4 --fraction 3  -- $($deqp_options)
+deqp-runner run --deqp $($deqp_module) --output $($results) --caselist $($caselist) --baseline $($baseline) --flakes $($flakes) --skips $($skips) $($includes) --testlog-to-xml C:\deqp\executor\testlog-to-xml.exe --jobs 4 --fraction 3  -- $($deqp_options)
 $deqpstatus = $?
 
 $template = "See https://$($env:CI_PROJECT_ROOT_NAMESPACE).pages.freedesktop.org/-/$($env:CI_PROJECT_NAME)/-/jobs/$($env:CI_JOB_ID)/artifacts/results/{{testcase}}.xml"
diff --git a/src/microsoft/ci/warp-skips.txt b/src/microsoft/ci/warp-skips.txt
new file mode 100644
index 00000000000..e69de29bb2d



More information about the mesa-commit mailing list