mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-06 17:50:40 +03:00
6640f05233
added vpntest.exe to test memory
19 lines
351 B
PowerShell
19 lines
351 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
|
|
# ('s', 'c', 'b', 'sm', 'cm') ??
|
|
('s', 'c', 'b') | % {
|
|
|
|
[String] $mode = $_
|
|
Write-Host "testing: $mode"
|
|
|
|
$t = (Write-Output "q\n" | & .\build\vpntest.exe $mode | Select-String -Pattern 'NO MEMORY LEAKS' -CaseSensitive)
|
|
|
|
if( ($t).Count -ne 1){
|
|
Write-Error 'failed'
|
|
return $false
|
|
}else{
|
|
Write-Host 'ok'
|
|
}
|
|
|
|
}
|