diff options
author | Sven Gothel <[email protected]> | 2011-07-23 08:14:29 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-07-23 08:14:29 +0200 |
commit | 9f45b6f09cbce6c7889e099939656356befa585d (patch) | |
tree | daeaec219fa453ee2af5b6be7ab4e032d7e3b2c5 /src/junit/com/jogamp/common/util/IntObjectHashMapTest.java | |
parent | 6a321a9fb50ceb3bde38c5199f95c8f849090496 (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.java | 2 |
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); } |