mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-24 02:34:17 +08:00
1a29f3dfdb
Reviewed-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20924>
20 lines
625 B
PowerShell
20 lines
625 B
PowerShell
$env:PIGLIT_NO_FAST_SKIP = 1
|
|
|
|
Copy-Item -Path _install\bin\opengl32.dll -Destination C:\Piglit\bin\opengl32.dll
|
|
Copy-Item -Path _install\bin\libgallium_wgl.dll -Destination C:\Piglit\bin\libgallium_wgl.dll
|
|
Copy-Item -Path _install\bin\libglapi.dll -Destination C:\Piglit\bin\libglapi.dll
|
|
|
|
$jobs = ""
|
|
if ($null -ne $env:FDO_CI_CONCURRENT) {
|
|
$jobs = "--jobs", "$($env:FDO_CI_CONCURRENT)"
|
|
}
|
|
|
|
deqp-runner suite --output .\logs --suite "_install/$env:PIGLIT_SUITE" `
|
|
--skips "_install/$env:PIGLIT_SKIPS" `
|
|
--baseline "_install/$env:PIGLIT_BASELINE" `
|
|
--flakes "_install/$env:PIGLIT_FLAKES" `
|
|
$jobs
|
|
if (!$?) {
|
|
Exit 1
|
|
}
|