Revision: 11209
Author:   [email protected]
Date:     Mon Apr  2 06:29:04 2012
Log:      Loosen up the test for boot time memory use on 64 bit.
Review URL: https://chromiumcodereview.appspot.com/9969051
http://code.google.com/p/v8/source/detail?r=11209

Modified:
 /branches/bleeding_edge/test/cctest/test-mark-compact.cc

=======================================
--- /branches/bleeding_edge/test/cctest/test-mark-compact.cc Mon Apr 2 01:32:31 2012 +++ /branches/bleeding_edge/test/cctest/test-mark-compact.cc Mon Apr 2 06:29:04 2012
@@ -534,9 +534,9 @@
     intptr_t booted_memory = MemoryInUse();
     if (sizeof(initial_memory) == 8) {
       if (v8::internal::Snapshot::IsEnabled()) {
-        CHECK_LE(booted_memory - initial_memory, 3500 * 1024);  // 3396.
+        CHECK_LE(booted_memory - initial_memory, 3600 * 1024);  // 3396.
       } else {
-        CHECK_LE(booted_memory - initial_memory, 3500 * 1024);  // 3432.
+        CHECK_LE(booted_memory - initial_memory, 3600 * 1024);  // 3432.
       }
     } else {
       if (v8::internal::Snapshot::IsEnabled()) {

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to