blob: 53389dd3138fa56eaa66714da21e239baffcdd77 [file] [log] [blame]
# Be sure to run "Set-ExecutionPolicy RemoteSigned" before running powershell scripts
Param([switch]$Debug)
if ($Debug) {
$dPath = "Debug"
} else {
$dPath = "Release"
}
Set-Item -path env:Path -value ($env:Path + ";..\loader\$dPath")
Set-Item -path env:Path -value ($env:Path + ";gtest-1.7.0\$dPath")
$env:VK_LAYER_PATH = "..\layers\$dPath"
& $dPath\vkbase.exe
& $dPath\vk_blit_tests
& $dPath\vk_image_tests
& $dPath\vk_render_tests
& $dPath\vk_layer_validation_tests
.\vktracereplay.ps1 "-$dPath"
.\vkvalidatelayerdoc.ps1