test1165: drop reference to deleted CURL_DISABLE_TESTS

Follow-up to bf823397ba #16134

Closes #19929
This commit is contained in:
Viktor Szakats 2025-12-11 01:52:58 +01:00
parent 869248cc3e
commit 421f931e7a
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -70,7 +70,7 @@ sub scanconf_cmake {
while(<S>) {
if(/(CURL_DISABLE_[A-Z0-9_]+)/g) {
my ($sym)=($1);
if(not $sym =~ /^(CURL_DISABLE_INSTALL|CURL_DISABLE_TESTS|CURL_DISABLE_SRP)$/) {
if(not $sym =~ /^(CURL_DISABLE_INSTALL|CURL_DISABLE_SRP)$/) {
$hashr->{$sym} = 1;
}
}