Allow having separate GC heaps and implement coordinated marking between them; this is useful for keeping wasm and js GC heaps separated with a clear boundary.
10 lines
219 B
CMake
10 lines
219 B
CMake
set(TEST_SOURCES
|
|
TestGCContainers.cpp
|
|
TestGCHeapGroup.cpp
|
|
TestGCIdleCollection.cpp
|
|
TestGCVisitor.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
ladybird_test("${source}" LibGC LIBS LibGC)
|
|
endforeach()
|