blob: 53389dd3138fa56eaa66714da21e239baffcdd77 [file] [log] [blame]
Tony Barbour59a47322015-06-24 16:06:58 -06001# Be sure to run "Set-ExecutionPolicy RemoteSigned" before running powershell scripts
2
Tony Barbour856aba32015-06-08 16:11:29 -06003Param([switch]$Debug)
4
5if ($Debug) {
6 $dPath = "Debug"
7} else {
8 $dPath = "Release"
9}
10
11Set-Item -path env:Path -value ($env:Path + ";..\loader\$dPath")
12Set-Item -path env:Path -value ($env:Path + ";gtest-1.7.0\$dPath")
Cody Northrop4adb6392015-08-14 10:59:35 -060013$env:VK_LAYER_PATH = "..\layers\$dPath"
Tony Barbour856aba32015-06-08 16:11:29 -060014
15& $dPath\vkbase.exe
16& $dPath\vk_blit_tests
17& $dPath\vk_image_tests
Tony Barbouraa45ac12015-08-04 11:37:59 -060018& $dPath\vk_render_tests
Tony Barbour856aba32015-06-08 16:11:29 -060019& $dPath\vk_layer_validation_tests
Mark Lobodzinski092932a2015-08-27 11:47:25 -060020.\vktracereplay.ps1 "-$dPath"
Tobin Ehlis12d4c6a2015-08-31 12:42:38 -060021.\vkvalidatelayerdoc.ps1