Reviewers: Kasper Lund, Description: Make the hash map test run faster by doing less work.
It still hits all of the code and runs in seconds on tinyone. Please review this at http://codereview.chromium.org/113459 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M test/cctest/test-hashmap.cc Index: test/cctest/test-hashmap.cc =================================================================== --- test/cctest/test-hashmap.cc (revision 1968) +++ test/cctest/test-hashmap.cc (working copy) @@ -171,6 +171,6 @@ TEST(Set) { - TestSet(Hash, 1000); - TestSet(CollisionHash, 100); + TestSet(Hash, 100); + TestSet(CollisionHash, 50); } --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
