Reviewers: Erik Corry,

Description:
Adjust limit for booted memory test.

My change decreased the size of a zone object and it seems
that sometimes the OS report more memory used even though there
is less zone allocation.

Please review this at https://chromiumcodereview.appspot.com/9443019/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     test/cctest/test-mark-compact.cc


Index: test/cctest/test-mark-compact.cc
===================================================================
--- test/cctest/test-mark-compact.cc    (revision 10806)
+++ test/cctest/test-mark-compact.cc    (working copy)
@@ -542,7 +542,7 @@
       if (v8::internal::Snapshot::IsEnabled()) {
         CHECK_LE(booted_memory - initial_memory, 6532 * 1024);  // 6388.
       } else {
-        CHECK_LE(booted_memory - initial_memory, 6686 * 1024);  // 6456
+        CHECK_LE(booted_memory - initial_memory, 6940 * 1024);  // 6456
       }
     }
   }


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

Reply via email to