Fix windows builder after fe9a16b6.
authorulan <ulan@chromium.org>
Tue, 26 May 2015 15:48:20 +0000 (08:48 -0700)
committerCommit bot <commit-bot@chromium.org>
Tue, 26 May 2015 15:48:32 +0000 (15:48 +0000)
TBR=hpayer@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true

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

Cr-Commit-Position: refs/heads/master@{#28635}

test/cctest/test-heap.cc

index 6b954bd..64d7a78 100644 (file)
@@ -5495,7 +5495,7 @@ TEST(OldSpaceAllocationCounter) {
   CHECK_LE(kSize, counter2 - counter1);
   heap->CollectGarbage(NEW_SPACE);
   size_t counter3 = heap->OldGenerationAllocationCounter();
-  CHECK_LE(0, counter3 - counter2);
+  CHECK_EQ(0u, counter3 - counter2);
   AllocateInSpace(isolate, kSize, OLD_SPACE);
   heap->CollectGarbage(OLD_SPACE);
   size_t counter4 = heap->OldGenerationAllocationCounter();