#if defined(CPPGC_CAGED_HEAP)
#include "src/heap/cppgc/caged-heap.h"
#include "include/cppgc/internal/caged-heap-local-data.h"
#include "src/base/page-allocator.h"
#include "test/unittests/heap/cppgc/tests.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace cppgc::internal {
class CagedHeapDeathTest : public testing::TestWithHeap { … };
TEST_F(CagedHeapDeathTest, AgeTableUncommittedBeforeGenerationalGCEnabled) { … }
class CagedHeapTest : public testing::TestWithHeap { … };
TEST_F(CagedHeapTest, AgeTableCommittedAfterGenerationalGCEnabled) { … }
}
#endif