remove DSA from pester tests

This commit is contained in:
Tess Gauthier 2024-09-16 11:37:57 -04:00
parent 10d03163e9
commit f168dca436
2 changed files with 45 additions and 46 deletions

View File

@ -1767,4 +1767,3 @@
#define HAVE_EVP_PKEY_GET0_RSA 1
#define HAVE_EVP_MD_CTX_NEW 1
#define HAVE_EVP_MD_CTX_FREE 1
#define WITH_DSA 1

View File

@ -25,7 +25,7 @@ Describe "E2E scenarios for ssh key management" -Tags "CI" {
}
else
{
$keytypes = @("rsa","dsa","ecdsa","ed25519")
$keytypes = @("rsa","ecdsa","ed25519")
}
$ssouser = $OpenSSHTestInfo["SSOUser"]
@ -464,7 +464,7 @@ Describe "E2E scenarios for ssh key management" -Tags "CI" {
It "$tC.$tI - ssh-keyscan with -f -t" -Skip:$NoLibreSSL {
Set-Content -Path tmp.txt -Value "127.0.0.1"
cmd /c "ssh-keyscan -p $port -f tmp.txt -t rsa,dsa 2>&1 > $outputFile"
cmd /c "ssh-keyscan -p $port -f tmp.txt -t rsa 2>&1 > $outputFile"
$outputFile | Should Contain '.*ssh-rsa.*'
}
}