Revision: 17377
Author:   [email protected]
Date:     Thu Oct 24 13:07:16 2013 UTC
Log:      Tune mjsunit/regress/regress-2612.

Lower the bounds to something bearable which would still timeout if we
used a quadratic algorithm.

[email protected]

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

Modified:
 /branches/bleeding_edge/test/mjsunit/mjsunit.status
 /branches/bleeding_edge/test/mjsunit/regress/regress-2612.js

=======================================
--- /branches/bleeding_edge/test/mjsunit/mjsunit.status Thu Oct 24 12:25:40 2013 UTC +++ /branches/bleeding_edge/test/mjsunit/mjsunit.status Thu Oct 24 13:07:16 2013 UTC
@@ -52,7 +52,6 @@
   'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]],
   'regress/regress-2318': [PASS, ['mode == debug', SKIP]],
   'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]],
-  'regress/regress-2612': [PASS, ['mode == debug', SKIP]],

##############################################################################
   # Too slow in debug mode for GC stress mode.
=======================================
--- /branches/bleeding_edge/test/mjsunit/regress/regress-2612.js Mon Apr 8 17:37:22 2013 UTC +++ /branches/bleeding_edge/test/mjsunit/regress/regress-2612.js Thu Oct 24 13:07:16 2013 UTC
@@ -57,11 +57,11 @@

 var source = "var ";

-for (var i = 0; i < 1000; i++) {
+for (var i = 0; i < 750; i++) {
   source += [varname(i), "=", rand(), ","].join("");
 }

-for (var i = 1000; i < 100000; i++) {
+for (var i = 750; i < 3000; i++) {
   source += [varname(i), "=",
              varname(randi(i)), "+",
              varname(randi(i)), ","].join("");
@@ -73,4 +73,3 @@
 f();
 %OptimizeFunctionOnNextCall(f);
 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