Reviewers: Erik Corry,
Description:
Double max-new-space-size to 2^18 in binary-op-newspace to make the test
run on
linux 64 with snapshots on.
Please review this at http://codereview.chromium.org/1735014/show
SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/
Affected files:
M test/mjsunit/binary-op-newspace.js
Index: test/mjsunit/binary-op-newspace.js
===================================================================
--- test/mjsunit/binary-op-newspace.js (revision 4494)
+++ test/mjsunit/binary-op-newspace.js (working copy)
@@ -30,14 +30,14 @@
* in heap number allocation still works.
*/
-// Flags: --max-new-space-size=131072
+// Flags: --max-new-space-size=262144
function f(x) {
return x % 3;
}
function test() {
- for (var i = 0; i < 20000; i++) {
+ for (var i = 0; i < 40000; i++) {
assertEquals(-1 / 0, 1 / f(-3));
}
}
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev