Revision: 4494
Author: [email protected]
Date: Mon Apr 26 05:58:20 2010
Log: 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
http://code.google.com/p/v8/source/detail?r=4494
Modified:
/branches/bleeding_edge/test/mjsunit/binary-op-newspace.js
=======================================
--- /branches/bleeding_edge/test/mjsunit/binary-op-newspace.js Mon Apr 26
04:06:37 2010
+++ /branches/bleeding_edge/test/mjsunit/binary-op-newspace.js Mon Apr 26
05:58:20 2010
@@ -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));
}
}
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev