Skip to content

Commit ad957f8

Browse files
authored
Remove failing bash tests (#650)
1 parent 7e45e74 commit ad957f8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

contrib/win32/openssh/AzDOBuildTools/AzDOBuildTools.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ function Install-CygWin
149149
)
150150

151151
Write-Verbose -Verbose -Message "Installing CygWin from Chocolately to location: ${InstallLocation} ..."
152-
choco install cygwin -y --params "/InstallDir:${InstallLocation} /NoStartMenu"
152+
choco install cygwin -y --force --params "/InstallDir:${InstallLocation} /NoStartMenu"
153153
}
154154

155155
<#

contrib/win32/openssh/bash_tests_iterator.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ try
185185
[string]$failed_testcases = [string]::Empty
186186

187187
# These are the known failed testcases.
188-
$known_failed_testcases = @("agent.sh", "key-options.sh", "forward-control.sh", "integrity.sh", "krl.sh", "cert-hostkey.sh", "cert-userkey.sh", "percent.sh")
188+
# transfer.sh, rekey.sh tests fail on CygWin v3.4.0, but succeeds with v3.3.6
189+
$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")
189190
$known_failed_testcases_skipped = @()
190191

191192
$start_time = (Get-Date)

0 commit comments

Comments
 (0)