Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | HashMapTest: Back to 50% tolerance, removed 'put' error | Sven Gothel | 2010-11-25 | 1 | -4/+4 |
| | |||||
* | Fix HashMapTests. The benchmark tests used the value as a key, hence finding ↵ | Sven Gothel | 2010-11-25 | 1 | -9/+16 |
| | | | | the non existing hashed value lead to O(n) | ||||
* | Make Primitive HashMap Benchmark test tolerant ~ 50%v2.0-rc1 | Sven Gothel | 2010-11-23 | 1 | -3/+5 |
| | |||||
* | Fixed benchmarking bugs in primitive HashMap test. | Elijah C. Menifee | 2010-11-06 | 1 | -11/+15 |
| | | | | | | | | | | | | | | | | | | | | | | Both IntIntHashMapTest and LongIntHashMapTest failed to reset test start time. The time values for intmapGetTime,mapGetTime,intmapRemoveTime,and mapRemoveTime all used the start time value from mapPutTime. This caused the following to be always/guarenteed to be true: mapPutTime < intmapGetTime < mapGetTime < intmapRemoveTime < mapRemoveTime thus not actually testing the following asserts: assertTrue("'get' too slow", intmapGetTime <= mapGetTime); assertTrue("'remove' too slow", intmapRemoveTime <= mapRemoveTime); In addition the results of the test were being printed before the actual test ran. Changed code to reset time to System.nanoTime() prior to each for loop, and moved time calculation and result output to below the test for loop. I also improved the output of the test info, by including the warmup status on benchmark start. | ||||
* | LICENSE.txt changes: | Sven Gothel | 2010-09-14 | 1 | -0/+28 |
| | | | | | | | | | | | | | - Added JogAmp Community and common denominator: New BSD 3-clause license - Added note to make/lib binary file (source and license) Added source and license text for external binaries used in build process (make/lib folder). Changed 'Sven Gothel' and 'Michael Bien' New BSD 3-clause license to 'JogAmp Community' Simplified BSD 2-clause license. | ||||
* | Fix: Add missing imports; Add warmup phase to primitive hashmap test | Sven Gothel | 2010-07-02 | 1 | -3/+10 |
| | |||||
* | Move HashMapTest to junit.run; Unify classes to only 'Test' in their name if ↵ | Sven Gothel | 2010-05-10 | 1 | -0/+167 |
they are a junit test. |