Commit 87dd41ae authored by Michael Lippautz's avatar Michael Lippautz Committed by V8 LUCI CQ

cppgc: Remove debugging info from tests

Change-Id: I62b6ea126cd15c06fc48c8c7eae14b2b0c9b1dda
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3043962
Auto-Submit: Michael Lippautz <mlippautz@chromium.org>
Commit-Queue: Omer Katz <omerkatz@chromium.org>
Reviewed-by: 's avatarOmer Katz <omerkatz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#75845}
parent e5bccf9b
......@@ -294,14 +294,10 @@ TEST_F(ConcurrentSweeperTest, DestroyLargePageOnMainThread) {
auto* object = MakeGarbageCollected<GCedType>(GetAllocationHandle());
auto* page = BasePage::FromPayload(object);
fprintf(stderr, "Original page: %p\n", page);
StartSweeping();
// Allocating another large object should not race here.
auto* a = MakeGarbageCollected<GCedType>(GetAllocationHandle());
fprintf(stderr, "Other page: %p\n", BasePage::FromPayload(a));
MakeGarbageCollected<GCedType>(GetAllocationHandle());
// Wait for concurrent sweeping to finish.
WaitForConcurrentSweeping();
......
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