From: ricow@chromium.org Date: Mon, 26 Apr 2010 12:58:20 +0000 (+0000) Subject: Change max-new-space-size to 2^17 (from 2^16) to make binary-op-newspace test run... X-Git-Tag: upstream/4.7.83~21949 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f5e78073a51ff82245cef8b02b32c7b325fe994;p=platform%2Fupstream%2Fv8.git Change max-new-space-size to 2^17 (from 2^16) to make binary-op-newspace test run on linux 64. Review URL: http://codereview.chromium.org/1780003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4494 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/test/mjsunit/binary-op-newspace.js b/test/mjsunit/binary-op-newspace.js index a56ef3c..5cf0cff 100644 --- a/test/mjsunit/binary-op-newspace.js +++ b/test/mjsunit/binary-op-newspace.js @@ -30,14 +30,14 @@ * in heap number allocation still works. */ -// Flags: --max-new-space-size=65536 +// Flags: --max-new-space-size=131072 function f(x) { return x % 3; } function test() { - for (var i = 0; i < 10000; i++) { + for (var i = 0; i < 20000; i++) { assertEquals(-1 / 0, 1 / f(-3)); } }