Reviewers: Kasper Lund,

Description:
Hide test failure be being less GC agressive in the test

This is a temporary fix until the root cause is resolved.

tbr=kasp...@chromium.org

Please review this at http://codereview.chromium.org/3122038/show

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

Affected files:
  M     test/cctest/test-debug.cc


Index: test/cctest/test-debug.cc
===================================================================
--- test/cctest/test-debug.cc   (revision 5333)
+++ test/cctest/test-debug.cc   (working copy)
@@ -869,8 +869,8 @@
       // Scavenge.
       Heap::CollectGarbage(0, v8::internal::NEW_SPACE);
     } else {
-      // Mark sweep compact.
-      Heap::CollectAllGarbage(true);
+      // Mark sweep (and perhaps compact).
+      Heap::CollectAllGarbage(false);
     }
   }
 }


--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev

Reply via email to