Browse Source

Reduce NumIterations for I8086 cpu to avoid timeout

git-svn-id: trunk@34052 -
pierre 9 years ago
parent
commit
1cbc526501
1 changed files with 4 additions and 0 deletions
  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);