From 916faac3dc239921b3bf880febf167e117b3dea8 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 26 Mar 2026 09:19:08 +0100 Subject: [PATCH] runtests: check for Debug case sensitively For both TrackMemory and Debug Closes #21099 --- tests/runtests.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/runtests.pl b/tests/runtests.pl index d5e43a6427..8a3a035d92 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -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.