mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-06 09:40:41 +03:00
21 lines
376 B
PowerShell
21 lines
376 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
|
|
# ('s', 'c', 'b', 'sm', 'cm') ??
|
|
('s', 'c', 'b') | % {
|
|
|
|
[String] $mode = $_
|
|
Write-Host "testing: $mode"
|
|
|
|
$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{
|
|
Write-Host 'ok'
|
|
}
|
|
|
|
}
|