Commit 3b1152ae authored by ricow@chromium.org's avatar ricow@chromium.org

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
parent 8c3e13ca
...@@ -50,4 +50,4 @@ F.prototype.foo = function () { ...@@ -50,4 +50,4 @@ F.prototype.foo = function () {
var ctx = new F; var ctx = new F;
for (var i = 0; i < 10000000; i++) ctx.foo(); for (var i = 0; i < 10000; i++) ctx.foo();
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment