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

Unified Diff: test/cctest/test-api.cc

Issue 10546146: MIPS: Fix failing cctest/test-api/HugeConsStringOutOfMemory test. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 6 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/cctest/test-api.cc
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
index ed31f6ffaea53d89ec428d82373bdab258b6b75d..2b53ae5037de8d5ce81de9e55f293f7c0d3c2b09 100644
--- a/test/cctest/test-api.cc
+++ b/test/cctest/test-api.cc
@@ -2697,7 +2697,11 @@ TEST(HugeConsStringOutOfMemory) {
static const int K = 1024;
v8::ResourceConstraints constraints;
constraints.set_max_young_space_size(256 * K);
+#if defined(V8_TARGET_ARCH_MIPS)
+ constraints.set_max_old_space_size(3 * K * K);
+#else
constraints.set_max_old_space_size(2 * K * K);
+#endif
v8::SetResourceConstraints(&constraints);
// Execute a script that causes out of memory.
« 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