Index: test/mjsunit/fast-literal.js |
diff --git a/test/mjsunit/fast-literal.js b/test/mjsunit/fast-literal.js |
index 822d90656b05948c495ca5e404f5b480fbf6bb7e..8e53244e52906f59cc0c81138696bc3cb6436feb 100644 |
--- a/test/mjsunit/fast-literal.js |
+++ b/test/mjsunit/fast-literal.js |
@@ -27,14 +27,14 @@ |
// Flags: --allow-natives-syntax --no-inline-new --nouse-allocation-folding |
-%SetAllocationTimeout(10, 0); |
+%SetAllocationTimeout(20, 0); |
function f() { |
return [[1, 2, 3], [1.1, 1.2, 1.3], [[], [], []]]; |
} |
f(); f(); f(); |
%OptimizeFunctionOnNextCall(f); |
-for (var i=0; i<1000; i++) { |
+for (var i=0; i<50; i++) { |
f(); |
} |