Commit 44bdc2c9 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1970 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 3cded9c3
......@@ -171,6 +171,6 @@ void TestSet(IntKeyHash hash, int size) {
TEST(Set) {
TestSet(Hash, 1000);
TestSet(CollisionHash, 100);
TestSet(Hash, 100);
TestSet(CollisionHash, 50);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment