Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1825)

Unified Diff: test/mjsunit/packed-elements.js

Issue 10703093: Fix timout of packed-elements.js on ARM (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/packed-elements.js
diff --git a/test/mjsunit/packed-elements.js b/test/mjsunit/packed-elements.js
index 7f333e56e5d273c80369961cb9fe5f205bb520e3..cfcdf8031fbbac3e79c6954bc412961ac2b13456 100644
--- a/test/mjsunit/packed-elements.js
+++ b/test/mjsunit/packed-elements.js
@@ -96,9 +96,9 @@ function test6() {
function test_with_optimization(f) {
// Run tests in a loop to make sure that inlined Array() constructor runs out
// of new space memory and must fall back on runtime impl.
- for (i = 0; i < 250000; ++i) f();
+ for (i = 0; i < 25000; ++i) f();
%OptimizeFunctionOnNextCall(f);
- for (i = 0; i < 250000; ++i) f(); // Make sure GC happens
+ for (i = 0; i < 25000; ++i) f(); // Make sure GC happens
}
if (has_packed_elements) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698