From 3b1152aed4afcc55b598d15481067ba96ac79f2c Mon Sep 17 00:00:00 2001 From: "ricow@chromium.org" Date: Tue, 14 Dec 2010 07:57:14 +0000 Subject: [PATCH] Change the number of iterations in mjsunit/regress-962 This test causes the arm simulator to timeout, and the test reveals the original problem with three orders of magnitude less iterations. Review URL: http://codereview.chromium.org/5678007 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5999 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/mjsunit/regress/regress-962.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mjsunit/regress/regress-962.js b/test/mjsunit/regress/regress-962.js index c0a2fdc..f9f46e1 100644 --- a/test/mjsunit/regress/regress-962.js +++ b/test/mjsunit/regress/regress-962.js @@ -50,4 +50,4 @@ F.prototype.foo = function () { var ctx = new F; -for (var i = 0; i < 10000000; i++) ctx.foo(); +for (var i = 0; i < 10000; i++) ctx.foo(); -- 2.7.4