mirror of
https://github.com/curl/curl.git
synced 2026-04-14 21:51:41 +03:00
runtests: check for Debug case sensitively
For both TrackMemory and Debug Closes #21099
This commit is contained in:
parent
b71973c115
commit
916faac3dc
1 changed files with 2 additions and 2 deletions
|
|
@ -657,9 +657,9 @@ sub checksystemfeatures {
|
|||
$feat = $1;
|
||||
|
||||
# built with memory tracking support (--enable-debug); may be disabled later
|
||||
$feature{"TrackMemory"} = $feat =~ /Debug/i;
|
||||
$feature{"TrackMemory"} = $feat =~ /\bDebug/;
|
||||
# curl was built with --enable-debug
|
||||
$feature{"Debug"} = $feat =~ /Debug/i;
|
||||
$feature{"Debug"} = $feat =~ /\bDebug/;
|
||||
# ssl enabled
|
||||
$feature{"SSL"} = $feat =~ /SSL/i;
|
||||
# multiple ssl backends available.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue