summaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp/common/util/IntObjectHashMapTest.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-07-23 08:14:29 +0200
committerSven Gothel <[email protected]>2011-07-23 08:14:29 +0200
commit9f45b6f09cbce6c7889e099939656356befa585d (patch)
treedaeaec219fa453ee2af5b6be7ab4e032d7e3b2c5 /src/junit/com/jogamp/common/util/IntObjectHashMapTest.java
parent6a321a9fb50ceb3bde38c5199f95c8f849090496 (diff)
fix cross test: Test* -> *Test* ; Reduce iterations further for ARM to speedup test
Diffstat (limited to 'src/junit/com/jogamp/common/util/IntObjectHashMapTest.java')
-rw-r--r--src/junit/com/jogamp/common/util/IntObjectHashMapTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/junit/com/jogamp/common/util/IntObjectHashMapTest.java b/src/junit/com/jogamp/common/util/IntObjectHashMapTest.java
index 2bbce8b..d0429e8 100644
--- a/src/junit/com/jogamp/common/util/IntObjectHashMapTest.java
+++ b/src/junit/com/jogamp/common/util/IntObjectHashMapTest.java
@@ -54,7 +54,7 @@ public class IntObjectHashMapTest {
@BeforeClass
public static void init() {
- iterations = ( Platform.getCPUType().getFamily() == Platform.CPUFamily.ARM ) ? 100 : 10000;
+ iterations = ( Platform.getCPUType().getFamily() == Platform.CPUFamily.ARM ) ? 20 : 10000;
pairs = new IntIntObjUniqueRndValues(iterations);
}