chromium/v8/test/cctest/heap/test-incremental-marking.cc

// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <stdlib.h>

#include "src/heap/safepoint.h"

#ifdef __linux__
#include <errno.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#endif

#include <utility>

#include "src/handles/global-handles.h"
#include "src/heap/gc-tracer.h"
#include "src/heap/incremental-marking.h"
#include "src/heap/spaces.h"
#include "src/init/v8.h"
#include "src/objects/objects-inl.h"
#include "test/cctest/cctest.h"
#include "test/cctest/heap/heap-utils.h"

IdleTask;
Task;
Isolate;

namespace v8 {
namespace internal {
namespace heap {

class MockPlatform : public TestPlatform {};

TEST_WITH_PLATFORM(IncrementalMarkingUsingTasks, MockPlatform) {}

}  // namespace heap
}  // namespace internal
}  // namespace v8