Skip to content

Commit

Permalink
Revert of Relax assert a little to fix flake on regress-3976 (patchset
Browse files Browse the repository at this point in the history
…nwjs#1 id:1 of https://codereview.chromium.org/1045763002/)

Reason for revert:
Reverting due to JSOn parser failures

Original issue's description:
> Relax assert a little to fix flake on regress-3976
>
> R=verwaest@chromium.org
> NOTRY=true
> BUG=
>
> Committed: https://crrev.com/b20edd7772892ff8b2b280b35e521fbc2cc4a5f6
> Cr-Commit-Position: refs/heads/master@{#27515}

TBR=verwaest@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=

Review URL: https://codereview.chromium.org/1050033003

Cr-Commit-Position: refs/heads/master@{#27561}
  • Loading branch information
erikcorry authored and Commit bot committed Apr 1, 2015
1 parent 974cdb6 commit 1912814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/heap/heap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5656,7 +5656,7 @@ void Heap::PrintHandles() {
class CheckHandleCountVisitor : public ObjectVisitor {
public:
CheckHandleCountVisitor() : handle_count_(0) {}
~CheckHandleCountVisitor() { CHECK(handle_count_ < 2000); }
~CheckHandleCountVisitor() { CHECK(handle_count_ < 1000); }
void VisitPointers(Object** start, Object** end) {
handle_count_ += end - start;
}
Expand Down

0 comments on commit 1912814

Please sign in to comment.