Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 1 | # Be sure to run "Set-ExecutionPolicy RemoteSigned" before running powershell scripts
|
| 2 |
|
Tony Barbour | 856aba3 | 2015-06-08 16:11:29 -0600 | [diff] [blame] | 3 | Param([switch]$Debug)
|
| 4 |
|
| 5 | if ($Debug) {
|
| 6 | $dPath = "Debug"
|
| 7 | } else {
|
| 8 | $dPath = "Release"
|
| 9 | }
|
| 10 |
|
| 11 | Set-Item -path env:Path -value ($env:Path + ";..\loader\$dPath")
|
| 12 | Set-Item -path env:Path -value ($env:Path + ";gtest-1.7.0\$dPath")
|
Cody Northrop | 4adb639 | 2015-08-14 10:59:35 -0600 | [diff] [blame] | 13 | $env:VK_LAYER_PATH = "..\layers\$dPath"
|
Tony Barbour | 856aba3 | 2015-06-08 16:11:29 -0600 | [diff] [blame] | 14 |
|
| 15 | & $dPath\vkbase.exe
|
| 16 | & $dPath\vk_blit_tests
|
| 17 | & $dPath\vk_image_tests
|
Tony Barbour | aa45ac1 | 2015-08-04 11:37:59 -0600 | [diff] [blame] | 18 | & $dPath\vk_render_tests
|
Tony Barbour | 856aba3 | 2015-06-08 16:11:29 -0600 | [diff] [blame] | 19 | & $dPath\vk_layer_validation_tests
|
Mark Lobodzinski | 092932a | 2015-08-27 11:47:25 -0600 | [diff] [blame] | 20 | .\vktracereplay.ps1 "-$dPath"
|
Tobin Ehlis | 12d4c6a | 2015-08-31 12:42:38 -0600 | [diff] [blame] | 21 | .\vkvalidatelayerdoc.ps1
|