From 84332d49fb3594734507ab75509c19efb62c80fd Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 25 Feb 2025 02:50:40 +0100 Subject: [PATCH] runtests: drop recognizing 'winssl' as Schannel Follow-up to 180501cb0220c8451a38dc8ae04b6c58743025a8 #3504 Closes #16467 --- .github/scripts/spellcheck.words | 1 - tests/CI.md | 2 +- tests/runtests.pl | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/scripts/spellcheck.words b/.github/scripts/spellcheck.words index 728ba8d3f4..26896719dc 100644 --- a/.github/scripts/spellcheck.words +++ b/.github/scripts/spellcheck.words @@ -950,7 +950,6 @@ winbuild WinIDN WinLDAP winsock -winssl Wireshark wolfSSH wolfSSL diff --git a/tests/CI.md b/tests/CI.md index 429bf264e0..e126ab4c32 100644 --- a/tests/CI.md +++ b/tests/CI.md @@ -36,7 +36,7 @@ Consider the following table while looking at pull request failures: | FreeBSD FreeBSD: ... | stable | all errors and failures | | LGTM analysis: Python | stable | new findings | | LGTM analysis: C/C++ | stable | new findings | - | buildbot/curl_winssl_ ... | stable | all errors and failures | + | buildbot/curl_Schannel_ ... | stable | all errors and failures | | AppVeyor | flaky | all errors and failures | | curl.curl (linux ...) | stable | all errors and failures | | curl.curl (windows ...) | flaky | repetitive errors/failures | diff --git a/tests/runtests.pl b/tests/runtests.pl index 92a3a9e3ab..a45d12f084 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -543,7 +543,7 @@ sub checksystemfeatures { $pwd = sys_native_current_path(); $feature{"win32"} = 1; } - if ($libcurl =~ /\s(winssl|schannel)\b/i) { + if ($libcurl =~ /\sschannel\b/i) { $feature{"Schannel"} = 1; $feature{"SSLpinning"} = 1; } -- 2.47.3