From: hpayer@chromium.org Date: Wed, 27 Feb 2013 13:38:29 +0000 (+0000) Subject: Increase acceptable boot up memory size in tests for parallel sweeper threads. X-Git-Tag: upstream/4.7.83~15007 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb807eeb0d0294a564d7b615ef19ed995d71cdb8;p=platform%2Fupstream%2Fv8.git Increase acceptable boot up memory size in tests for parallel sweeper threads. BUG= Review URL: https://codereview.chromium.org/12310168 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13760 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/test/cctest/test-mark-compact.cc b/test/cctest/test-mark-compact.cc index d94c37e..83e4197 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); } } }