mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:48:00 +02:00
* disable timing check as it causes too much false negatives on machines under load
This commit is contained in:
parent
c5f4a6acd0
commit
aff133cac2
@ -128,8 +128,10 @@ type
|
||||
if (prevTime > 0) and (time / prevTime > 3) then
|
||||
begin
|
||||
writeln;
|
||||
writeln('Bad sorting algorithm behaviour');
|
||||
writeln('Potentially bad sorting algorithm behaviour');
|
||||
{ causes too many false negative
|
||||
halt(1);
|
||||
}
|
||||
end;
|
||||
prevTime := time;
|
||||
write(', ');
|
||||
|
Loading…
Reference in New Issue
Block a user