Преглед изворни кода

Reduce NumIterations for I8086 cpu to avoid timeout

git-svn-id: trunk@34052 -
pierre пре 9 година
родитељ
комит
1cbc526501
1 измењених фајлова са 4 додато и 0 уклоњено
  1. 4 0
      tests/test/tint642.pp

+ 4 - 0
tests/test/tint642.pp

@@ -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);