mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-15 12:29:32 +02:00
* use sametext instead of converting case
This commit is contained in:
parent
5130e82af0
commit
22c91ec124
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user