* use sametext instead of converting case

This commit is contained in:
Michaël Van Canneyt 2025-04-07 14:51:56 +02:00
parent 5130e82af0
commit 22c91ec124

View File

@ -3,7 +3,7 @@
Program GParMake;
Uses
Classes;
SysUtils, Classes;
procedure Usage;
begin
@ -176,7 +176,7 @@ Function ProcessArgs: longint;
nexttestname:=''
else
nexttestname:=filelist[i+1];
if lowercase(copy(testname,1,length(testname)-4))<>lowercase(copy(nexttestname,1,length(nexttestname)-4)) then
if not SameText(copy(testname,1,length(testname)-4),copy(nexttestname,1,length(nexttestname)-4)) then
FlushChunk;
end;
end;