
Acked-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20454>
14 lines
513 B
PowerShell
14 lines
513 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
|
|
|
|
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"
|
|
if (!$?) {
|
|
Exit 1
|
|
}
|