Revision: 11993
Author: [email protected]
Date: Thu Jul 5 06:40:51 2012
Log: Fix timout of packed-elements.js on ARM
[email protected]
Review URL: https://chromiumcodereview.appspot.com/10703093
http://code.google.com/p/v8/source/detail?r=11993
Modified:
/branches/bleeding_edge/test/mjsunit/packed-elements.js
=======================================
--- /branches/bleeding_edge/test/mjsunit/packed-elements.js Wed May 23
07:24:29 2012
+++ /branches/bleeding_edge/test/mjsunit/packed-elements.js Thu Jul 5
06:40:51 2012
@@ -96,9 +96,9 @@
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) {
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev