forked from Qortal/Brooklyn
27 lines
1002 B
PowerShell
27 lines
1002 B
PowerShell
|
$env:PIGLIT_NO_FAST_SKIP = 1
|
||
|
|
||
|
Copy-Item -Path _install\bin\opengl32.dll -Destination C:\Piglit\lib\piglit\bin\opengl32.dll
|
||
|
|
||
|
# Run this using VsDevCmd.bat to ensure DXIL.dll is in %PATH%
|
||
|
cmd.exe /C "C:\BuildTools\Common7\Tools\VsDevCmd.bat -host_arch=amd64 -arch=amd64 && py -3 C:\Piglit\bin\piglit.py run `"$env:PIGLIT_PROFILE`" $env:PIGLIT_OPTIONS $env:PIGLIT_TESTS .\results"
|
||
|
|
||
|
py -3 C:\Piglit\bin\piglit.py summary console .\results | Select -SkipLast 1 | Select-String -NotMatch -Pattern ': pass' | Set-Content -Path .\result.txt
|
||
|
|
||
|
$reference = Get-Content ".\_install\$env:PIGLIT_PROFILE.txt"
|
||
|
$result = Get-Content .\result.txt
|
||
|
if (-Not ($reference -And $result)) {
|
||
|
Exit 1
|
||
|
}
|
||
|
|
||
|
$diff = Compare-Object -ReferenceObject $reference -DifferenceObject $result
|
||
|
if (-Not $diff) {
|
||
|
Exit 0
|
||
|
}
|
||
|
|
||
|
py -3 C:\Piglit\bin\piglit.py summary html --exclude-details=pass .\summary .\results
|
||
|
|
||
|
Write-Host "Unexpected change in results:"
|
||
|
Write-Output $diff | Format-Table -Property SideIndicator,InputObject -Wrap
|
||
|
|
||
|
Exit 1
|