Source code

Revision control

Copy as Markdown

Other Tools

// Test logs that contain allocations from debuggee compartments added as we are
// logging.
const dbg = new Debugger();
dbg.memory.trackingAllocationSites = true;
const root1 = newGlobal({newCompartment: true});
dbg.addDebuggee(root1);
root1.eval("this.alloc = {}");
const root2 = newGlobal({newCompartment: true});
dbg.addDebuggee(root2);
root2.eval("this.alloc = {}");
const root3 = newGlobal({newCompartment: true});
dbg.addDebuggee(root3);
root3.eval("this.alloc = {}");
const allocs = dbg.memory.drainAllocationsLog();
assertEq(allocs.length >= 3, true);