Revision: 17615
Author:   [email protected]
Date:     Mon Nov 11 10:22:46 2013 UTC
Log:      Tame mjsunit/fast-literal after fixing allocations.

Not that allocations go through Heap::AllocateRaw and actually respect
the allocation timeout, the runtime of this test spiked. This adjusts
the limit to sane values now that the values are actually respected.

[email protected]
TEST=mjsunit/fast-literal

Review URL: https://codereview.chromium.org/63603009
http://code.google.com/p/v8/source/detail?r=17615

Modified:
 /branches/bleeding_edge/test/mjsunit/fast-literal.js

=======================================
--- /branches/bleeding_edge/test/mjsunit/fast-literal.js Thu Aug 29 12:06:45 2013 UTC +++ /branches/bleeding_edge/test/mjsunit/fast-literal.js Mon Nov 11 10:22:46 2013 UTC
@@ -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();
 }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to