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

Unified Diff: test/cctest/test-mark-compact.cc

Issue 12310168: Increase acceptable boot up memory size in tests for parallel sweeper threads. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 10 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-mark-compact.cc
diff --git a/test/cctest/test-mark-compact.cc b/test/cctest/test-mark-compact.cc
index d94c37e808ff8a72fa889b3e95e238353296a4f5..83e4197a7dc88c48509cd61c28bd6704bfcf3636 100644
--- a/test/cctest/test-mark-compact.cc
+++ b/test/cctest/test-mark-compact.cc
@@ -558,15 +558,15 @@ TEST(BootUpMemoryUse) {
printf("delta: %" V8_PTR_PREFIX "d kB\n", delta / 1024);
if (sizeof(initial_memory) == 8) { // 64-bit.
if (v8::internal::Snapshot::IsEnabled()) {
- CHECK_LE(delta, 3700 * 1024);
+ CHECK_LE(delta, 4000 * 1024);
} else {
- CHECK_LE(delta, 4200 * 1024);
+ CHECK_LE(delta, 4500 * 1024);
}
} else { // 32-bit.
if (v8::internal::Snapshot::IsEnabled()) {
- CHECK_LE(delta, 2600 * 1024);
+ CHECK_LE(delta, 2900 * 1024);
} else {
- CHECK_LE(delta, 3100 * 1024);
+ CHECK_LE(delta, 3400 * 1024);
}
}
}
« 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