Change the number of iterations in mjsunit/regress-962
authorricow@chromium.org <ricow@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Tue, 14 Dec 2010 07:57:14 +0000 (07:57 +0000)
committerricow@chromium.org <ricow@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Tue, 14 Dec 2010 07:57:14 +0000 (07:57 +0000)
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

index c0a2fdc..f9f46e1 100644 (file)
@@ -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();