tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Memory-drainAllocationsLog-05.js (253B)


      1 // Test an empty allocation log.
      2 
      3 const root = newGlobal({newCompartment: true});
      4 const dbg = new Debugger();
      5 dbg.addDebuggee(root)
      6 
      7 dbg.memory.trackingAllocationSites = true;
      8 const allocs = dbg.memory.drainAllocationsLog();
      9 assertEq(allocs.length, 0);