Author: [email protected]
Date: Fri May 15 06:49:00 2009
New Revision: 1970
Modified:
branches/bleeding_edge/test/cctest/test-hashmap.cc
Log:
Make the hash map test run faster by doing less work.
It still hits all of the code and runs in seconds on tinyone.
Review URL: http://codereview.chromium.org/113459
Modified: branches/bleeding_edge/test/cctest/test-hashmap.cc
==============================================================================
--- branches/bleeding_edge/test/cctest/test-hashmap.cc (original)
+++ branches/bleeding_edge/test/cctest/test-hashmap.cc Fri May 15 06:49:00
2009
@@ -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
-~----------~----~----~----~------~----~------~--~---