windows: Return exit status from test script

This commit is contained in:
Cody Northrop 2016-05-25 01:38:50 -06:00
parent 9fec6b97a7
commit 2429641367

View File

@ -13,4 +13,8 @@ Set-Item -path env:Path -value ($env:Path + ";gtest-1.7.0\$dPath")
$env:VK_LAYER_PATH = "..\layers\$dPath"
& $dPath\vk_layer_validation_tests
if ($lastexitcode -ne 0) {
exit 1
}
.\vkvalidatelayerdoc.ps1
exit $lastexitcode