xo-alloc, xo-object: fix alloc,gc unit tests after gc improvements

This commit is contained in:
Roland Conybeare 2025-11-29 16:58:44 -05:00
commit db32b58052
14 changed files with 149 additions and 46 deletions

View file

@ -17,7 +17,9 @@ namespace xo {
{
up<GC> gc = GC::make(
{ .initial_nursery_z_ = 1024,
.initial_tenured_z_ = 1024
.initial_tenured_z_ = 2048,
.incr_gc_threshold_ = 512,
.full_gc_threshold_ = 512,
});
REQUIRE(gc.get());