1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +03:00

ci: display error if vpntest failed

This commit is contained in:
Ilya Shipitsin 2019-08-04 14:42:52 +05:00
parent d10f83417f
commit 2fa28480f9

View File

@ -6,9 +6,11 @@ $ErrorActionPreference = 'Stop'
[String] $mode = $_
Write-Host "testing: $mode"
$t = (Write-Output "q\n" | & .\build\vpntest.exe $mode | Select-String -Pattern 'NO MEMORY LEAKS' -CaseSensitive)
$full = (Write-Output "q\n" | & .\build\vpntest.exe $mode)
$t = ($full | Select-String -Pattern 'NO MEMORY LEAKS' -CaseSensitive)
if( ($t).Count -ne 1){
$full
Write-Error 'failed'
return $false
}else{