Reviewers: Toon Verwaest,
Description:
Relax assert a little to fix flake on regress-3976
[email protected]
BUG=
Please review this at https://codereview.chromium.org/1045763002/
Base URL: https://chromium.googlesource.com/v8/v8.git@master
Affected files (+1, -1 lines):
M src/heap/heap.cc
Index: src/heap/heap.cc
diff --git a/src/heap/heap.cc b/src/heap/heap.cc
index
e89aafa900f5464348e4b934189fc00326fe5c09..c4a368ea5b87cf564a5263c56dc05de002966d93
100644
--- a/src/heap/heap.cc
+++ b/src/heap/heap.cc
@@ -5656,7 +5656,7 @@ void Heap::PrintHandles() {
class CheckHandleCountVisitor : public ObjectVisitor {
public:
CheckHandleCountVisitor() : handle_count_(0) {}
- ~CheckHandleCountVisitor() { CHECK(handle_count_ < 1000); }
+ ~CheckHandleCountVisitor() { CHECK(handle_count_ < 2000); }
void VisitPointers(Object** start, Object** end) {
handle_count_ += end - start;
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.