mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 10:48:12 +02:00
Reduce NumIterations for I8086 cpu to avoid timeout
git-svn-id: trunk@34052 -
This commit is contained in:
parent
8df1d1f9b8
commit
1cbc526501
@ -16,12 +16,16 @@ type
|
||||
end;
|
||||
|
||||
const
|
||||
{$ifdef CPUI8086}
|
||||
NumIterations = 100;
|
||||
{$else not CPUI8086}
|
||||
{$ifdef CPU68K}
|
||||
{ this test takes ages under m68k otherwise PM }
|
||||
NumIterations = 10000;
|
||||
{$else not CPU68K}
|
||||
NumIterations = 100000;
|
||||
{$endif not CPU68K}
|
||||
{$endif not CPUI8086}
|
||||
|
||||
procedure dumpqword(q : qword);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user