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

26 lines
549 B
PowerShell
Raw Normal View History

$ErrorActionPreference = 'Stop'
if (Test-Path "env:BUILD_BINARIESDIRECTORY") {
$BUILD_BINARIESDIRECTORY = $env:BUILD_BINARIESDIRECTORY
} else {
$BUILD_BINARIESDIRECTORY = "build"
}
# ('s', 'c', 'b', 'sm', 'cm') ??
('s', 'c', 'b') | % {
[String] $mode = $_
Write-Host "testing: $mode"
$full = (Write-Output "q\n" | & "$BUILD_BINARIESDIRECTORY\vpntest.exe" $mode)
2019-08-04 12:42:52 +03:00
$t = ($full | Select-String -Pattern 'NO MEMORY LEAKS' -CaseSensitive)
if (($t).Count -ne 1) {
2019-08-04 12:42:52 +03:00
$full
Write-Error 'failed'
return $false
} else {
Write-Host 'ok'
}
}