Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(393)

Unified Diff: test/mjsunit/binary-op-newspace.js

Issue 1735014: Double max-new-space-size to 2^18 in binary-op-newspace to make the test run ... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698