Remove failing bash tests (#650)

This commit is contained in:
Paul Higinbotham 2022-12-07 09:09:27 -08:00 committed by GitHub
parent 7e45e74dae
commit ad957f89e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -149,7 +149,7 @@ function Install-CygWin
)
Write-Verbose -Verbose -Message "Installing CygWin from Chocolately to location: ${InstallLocation} ..."
choco install cygwin -y --params "/InstallDir:${InstallLocation} /NoStartMenu"
choco install cygwin -y --force --params "/InstallDir:${InstallLocation} /NoStartMenu"
}
<#

View File

@ -185,7 +185,8 @@ try
[string]$failed_testcases = [string]::Empty
# These are the known failed testcases.
$known_failed_testcases = @("agent.sh", "key-options.sh", "forward-control.sh", "integrity.sh", "krl.sh", "cert-hostkey.sh", "cert-userkey.sh", "percent.sh")
# transfer.sh, rekey.sh tests fail on CygWin v3.4.0, but succeeds with v3.3.6
$known_failed_testcases = @("agent.sh", "key-options.sh", "forward-control.sh", "integrity.sh", "krl.sh", "cert-hostkey.sh", "cert-userkey.sh", "percent.sh", "transfer.sh", "rekey.sh")
$known_failed_testcases_skipped = @()
$start_time = (Get-Date)