Commit e38f89be authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Hide test failure be being less GC agressive in the test

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

TBR=kasperl@chromium.org
Review URL: http://codereview.chromium.org/3122038

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5336 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 02a842da
...@@ -869,8 +869,8 @@ static void DebugEventBreakPointCollectGarbage( ...@@ -869,8 +869,8 @@ static void DebugEventBreakPointCollectGarbage(
// Scavenge. // Scavenge.
Heap::CollectGarbage(0, v8::internal::NEW_SPACE); Heap::CollectGarbage(0, v8::internal::NEW_SPACE);
} else { } else {
// Mark sweep compact. // Mark sweep (and perhaps compact).
Heap::CollectAllGarbage(true); Heap::CollectAllGarbage(false);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment