diff options
author | Sven Gothel <[email protected]> | 2010-11-25 04:01:23 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-25 04:01:23 +0100 |
commit | 7f76b669c534208115b5e06ebab53acf1fcaa9de (patch) | |
tree | 35377efae278579f7554e989ba149431e5090f38 /make | |
parent | 4e4f6ce89d01ab36dc7db258fe64feb0b1113c16 (diff) |
Fix HashMapTests. The benchmark tests used the value as a key, hence finding the non existing hashed value lead to O(n)
Diffstat (limited to 'make')
-rw-r--r-- | make/scripts/runtest.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/make/scripts/runtest.sh b/make/scripts/runtest.sh index 21602d5..b563f74 100644 --- a/make/scripts/runtest.sh +++ b/make/scripts/runtest.sh @@ -39,10 +39,12 @@ function onetest() { } #onetest com.jogamp.common.GlueGenVersion 2>&1 | tee -a $LOG -onetest com.jogamp.common.util.TestVersionInfo 2>&1 | tee -a $LOG +#onetest com.jogamp.common.util.TestVersionInfo 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestIteratorIndexCORE 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.locks.TestRecursiveLock01 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestArrayHashSet01 2>&1 | tee -a $LOG +onetest com.jogamp.common.util.IntIntHashMapTest 2>&1 | tee -a $LOG +onetest com.jogamp.common.util.LongIntHashMapTest 2>&1 | tee -a $LOG #onetest com.jogamp.common.nio.TestBuffersFloatDoubleConversion 2>&1 | tee -a $LOG #onetest com.jogamp.gluegen.PCPPTest 2>&1 | tee -a $LOG #onetest com.jogamp.gluegen.test.TestPointerBufferEndian 2>&1 | tee -a $LOG |